summaryrefslogtreecommitdiffstats
path: root/telecomm
diff options
context:
space:
mode:
authorBen Gilad <gilad@google.com>2014-03-04 16:01:22 -0800
committerBen Gilad <gilad@google.com>2014-03-04 16:01:22 -0800
commit6c874e3d786eea52f3488dce7c9d56a869e5ee23 (patch)
treef5f215c8fa726e9f824bbf587a175cead228d61f /telecomm
parentbd4c10f8d7069cfbd8bb9b1c6879f85074c471b9 (diff)
downloadframeworks_base-6c874e3d786eea52f3488dce7c9d56a869e5ee23.zip
frameworks_base-6c874e3d786eea52f3488dce7c9d56a869e5ee23.tar.gz
frameworks_base-6c874e3d786eea52f3488dce7c9d56a869e5ee23.tar.bz2
Adding the aborted call state.
Change-Id: I26c1e2bc180a2be2d2374143546c666faeea2705
Diffstat (limited to 'telecomm')
-rw-r--r--telecomm/java/android/telecomm/CallState.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/telecomm/java/android/telecomm/CallState.java b/telecomm/java/android/telecomm/CallState.java
index 4f774cb..d4a45f9 100644
--- a/telecomm/java/android/telecomm/CallState.java
+++ b/telecomm/java/android/telecomm/CallState.java
@@ -62,5 +62,11 @@ public enum CallState {
* the disconnection or communication was lost to the call service currently responsible for
* this call (e.g., call service crashes).
*/
- DISCONNECTED;
+ DISCONNECTED,
+
+ /**
+ * Indicates that the call was attempted (mostly in the context of outgoing, at least at the
+ * time of writing) but cancelled before it was successfully connected.
+ */
+ ABORTED;
}