summaryrefslogtreecommitdiffstats
path: root/core/java/android/provider/CallLog.java
diff options
context:
space:
mode:
authorFlavio Lerda <flerda@google.com>2011-07-26 13:22:28 +0100
committerFlavio Lerda <flerda@google.com>2011-07-26 20:19:48 +0100
commit31b594e129e0fc5840be66ef539c0b6b0afe7f90 (patch)
treeddd58565ec1ac4a0d327cf4fd6ea9b0b61eaa50c /core/java/android/provider/CallLog.java
parent686200cb5f3e80c0b0519ec14cc54b280a560863 (diff)
downloadframeworks_base-31b594e129e0fc5840be66ef539c0b6b0afe7f90.zip
frameworks_base-31b594e129e0fc5840be66ef539c0b6b0afe7f90.tar.gz
frameworks_base-31b594e129e0fc5840be66ef539c0b6b0afe7f90.tar.bz2
Add IS_READ field to CallLog and VoicemailContract.
We had initially decided to merge the NEW field (from the call log) and IS_READ field (from the voicemail contract) into the single NEW field already present in the call log. However, it turned out that the meaning of the two fields is slightly different: NEW means the items has just been inserted (and the user is not aware of it) while IS_READ represents whether the user has read this specific message (or heard, in case of voicemails). This change makes the IS_READ field public, as well as deletes the NEW field from the voicemail contract, since it is no longer needed there. The NEW field in the voicemail contract (in fact the entire voicemail contract) has never been released (this feature is new in ICS). Bug: 5036195 Change-Id: I740c51c1a8e6d2460050eaab9943fb38b1565058
Diffstat (limited to 'core/java/android/provider/CallLog.java')
-rw-r--r--core/java/android/provider/CallLog.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/java/android/provider/CallLog.java b/core/java/android/provider/CallLog.java
index e23d6f3..b8ef7be 100644
--- a/core/java/android/provider/CallLog.java
+++ b/core/java/android/provider/CallLog.java
@@ -189,7 +189,6 @@ public class CallLog {
* Unlike the {@link #NEW} field, which requires the user to have acknowledged the
* existence of the entry, this implies the user has interacted with the entry.
* <P>Type: INTEGER (boolean)</P>
- * @hide
*/
public static final String IS_READ = "is_read";