summaryrefslogtreecommitdiff
path: root/InCallUI
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-09-15 12:49:18 -0700
committerYorke Lee <yorkelee@google.com>2015-09-15 18:18:00 -0700
commit1711e6cd807e84c75b966febda977db791e26209 (patch)
tree15f2fe900c0fc9e2df9f8482641507c4f3b9a677 /InCallUI
parenta749c526178aee1168cedac0194ace2add8ce6c1 (diff)
Update some logging constants
Bug: 23164804 Change-Id: I35dca1b84dd1d36285fa9566d64e4d57570dc312
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";
}