Support conference calling. (2/4)
Bug: 15006702
Change-Id: I2764ea242f783ba478c9eae86618dd33e9fc792a
diff --git a/src/com/android/telecomm/Timeouts.java b/src/com/android/telecomm/Timeouts.java
index d13091f..3e5899c 100644
--- a/src/com/android/telecomm/Timeouts.java
+++ b/src/com/android/telecomm/Timeouts.java
@@ -65,7 +65,14 @@
* to complete. If the query goes beyond this timeout, the incoming call screen is shown to the
* user.
*/
- public static long getDirectToVoicemail() {
+ public static long getDirectToVoicemailMillis() {
return get("direct_to_voicemail_ms", 500L);
}
+
+ /**
+ * Returns the amount of time that a connection service has to respond to a "conference" action.
+ */
+ public static long getConferenceCallExpireMillis() {
+ return get("conference_call_expire_ms", 15 * 1000L);
+ }
}