summaryrefslogtreecommitdiffstats
path: root/telephony
diff options
context:
space:
mode:
authorStephen Bird <sbird@cyngn.com>2016-02-26 15:19:52 -0800
committerStephen Bird <sbird@cyngn.com>2016-03-21 20:36:58 -0700
commit12ec9b0d8fbcc5b6489862735033acde30c8c8bd (patch)
tree3e26ba065e915987c3fa7be99131d6ecf3044faf /telephony
parentc667aec6f738985361780323d9c50308be461cc4 (diff)
downloadframeworks_base-12ec9b0d8fbcc5b6489862735033acde30c8c8bd.zip
frameworks_base-12ec9b0d8fbcc5b6489862735033acde30c8c8bd.tar.gz
frameworks_base-12ec9b0d8fbcc5b6489862735033acde30c8c8bd.tar.bz2
[1/4] Pass call extras to addcall
We use the bundle to write the origin that the application can pass us. This data will be used to determine which parts of the application/os are used to make calls most often. Ticket: CD-517 Change-Id: I7857ec3bf38cf5c7232f2152d16f17044e3b3e0e
Diffstat (limited to 'telephony')
-rwxr-xr-xtelephony/java/com/android/internal/telephony/PhoneConstants.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/PhoneConstants.java b/telephony/java/com/android/internal/telephony/PhoneConstants.java
index e612be3..ca3c8a8 100755
--- a/telephony/java/com/android/internal/telephony/PhoneConstants.java
+++ b/telephony/java/com/android/internal/telephony/PhoneConstants.java
@@ -200,4 +200,7 @@ public class PhoneConstants {
public static final int AUDIO_OUTPUT_ENABLE_SPEAKER = 0;
public static final int AUDIO_OUTPUT_DISABLE_SPEAKER = 1;
public static final int AUDIO_OUTPUT_DEFAULT = AUDIO_OUTPUT_ENABLE_SPEAKER;
+
+ /** Copied from ContactsCommon. See comments in ContactsCommon app for more detail. */
+ public static final String EXTRA_CALL_ORIGIN = "com.android.phone.CALL_ORIGIN";
}