diff options
author | Jay Shrauner <shrauner@google.com> | 2013-06-10 10:10:11 -0700 |
---|---|---|
committer | Jay Shrauner <shrauner@google.com> | 2013-06-18 10:20:04 -0700 |
commit | d88eb719ace9412c7e21968628206a10ab192be7 (patch) | |
tree | c99dc5d13cfcdb6c7f3572ab7594285bd11f26ab /telephony | |
parent | 1a6a620e451e41f77549b907a1d8661e153d6913 (diff) | |
download | frameworks_base-d88eb719ace9412c7e21968628206a10ab192be7.zip frameworks_base-d88eb719ace9412c7e21968628206a10ab192be7.tar.gz frameworks_base-d88eb719ace9412c7e21968628206a10ab192be7.tar.bz2 |
Add number presentation column to call log
Change call log so instead of overloading the phone number with special
strings "-1", "-2", etc to denote private phone numbers, payphones, etc,
put presentation type in its own column and expose in the public API these
type values.
Bug:6948882
Change-Id: I230c26aa0428d605a0e83169a635b5bbf1aa4e3f
Diffstat (limited to 'telephony')
-rw-r--r-- | telephony/java/com/android/internal/telephony/CallerInfo.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/telephony/java/com/android/internal/telephony/CallerInfo.java b/telephony/java/com/android/internal/telephony/CallerInfo.java index 228a630..6978551 100644 --- a/telephony/java/com/android/internal/telephony/CallerInfo.java +++ b/telephony/java/com/android/internal/telephony/CallerInfo.java @@ -49,10 +49,6 @@ public class CallerInfo { private static final String TAG = "CallerInfo"; private static final boolean VDBG = Rlog.isLoggable(TAG, Log.VERBOSE); - public static final String UNKNOWN_NUMBER = "-1"; - public static final String PRIVATE_NUMBER = "-2"; - public static final String PAYPHONE_NUMBER = "-3"; - /** * Please note that, any one of these member variables can be null, * and any accesses to them should be prepared to handle such a case. |