summaryrefslogtreecommitdiff
path: root/InCallUI
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-09-16 18:26:07 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-09-16 18:26:07 +0000
commitad9a5f36ed22b45c31fce53f98ce3af00a4df020 (patch)
tree28c4ca1d76ae1390b61d4b17d7daa736bc63a00f /InCallUI
parent8871121168d8bd7012b829f382d474b04f78ca45 (diff)
parent1711e6cd807e84c75b966febda977db791e26209 (diff)
Merge "Update some logging constants" into ub-contactsdialer-a-dev
Diffstat (limited to 'InCallUI')
-rw-r--r--InCallUI/src/com/android/incallui/Call.java14
1 files changed, 11 insertions, 3 deletions
diff --git a/InCallUI/src/com/android/incallui/Call.java b/InCallUI/src/com/android/incallui/Call.java
index 1d6c2455f..c5971ff9f 100644
--- a/InCallUI/src/com/android/incallui/Call.java
+++ b/InCallUI/src/com/android/incallui/Call.java
@@ -199,7 +199,7 @@ public class Call {
public static final int INITIATION_INCOMING = 1;
public static final int INITIATION_DIALPAD = 2;
public static final int INITIATION_SPEED_DIAL = 3;
- public static final int INITIATION_NEARBY_PLACES = 4;
+ public static final int INITIATION_REMOTE_DIRECTORY = 4;
public static final int INITIATION_SMART_DIAL = 5;
public static final int INITIATION_REGULAR_SEARCH = 6;
public static final int INITIATION_CALL_LOG = 7;
@@ -255,14 +255,22 @@ public class Call {
return "Dialpad";
case INITIATION_SPEED_DIAL:
return "Speed Dial";
- case INITIATION_NEARBY_PLACES:
- return "Nearby Places";
+ case INITIATION_REMOTE_DIRECTORY:
+ return "Remote Directory";
+ case INITIATION_SMART_DIAL:
+ return "Smart Dial";
+ case INITIATION_REGULAR_SEARCH:
+ return "Regular Search";
case INITIATION_CALL_LOG:
return "Call Log";
case INITIATION_CALL_LOG_FILTER:
return "Call Log Filter";
case INITIATION_VOICEMAIL_LOG:
return "Voicemail Log";
+ case INITIATION_CALL_DETAILS:
+ return "Call Details";
+ case INITIATION_QUICK_CONTACTS:
+ return "Quick Contacts";
default:
return "Unknown";
}