diff options
author | Debashish Chatterjee <debashishc@google.com> | 2011-06-28 10:48:51 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-06-28 10:48:51 -0700 |
commit | 6b47b8888cfa5c9e24b52b8077b611c7fd8d9a34 (patch) | |
tree | 2a6a571be299a60c78f0f3d19de7010aa89614d4 | |
parent | 0de2b685b20b2b6c7eb0bb7d468e5205a1ad384c (diff) | |
parent | 8e385c580905671c9042119048f9461d7687a562 (diff) | |
download | android_development-6b47b8888cfa5c9e24b52b8077b611c7fd8d9a34.tar.gz android_development-6b47b8888cfa5c9e24b52b8077b611c7fd8d9a34.tar.bz2 android_development-6b47b8888cfa5c9e24b52b8077b611c7fd8d9a34.zip |
Merge "Copied recent VoicemailContract changes from framework/base/core to VoicemailProviderDemo."
-rw-r--r-- | samples/VoicemailProviderDemo/src/com/example/android/provider/VoicemailContract.java | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/samples/VoicemailProviderDemo/src/com/example/android/provider/VoicemailContract.java b/samples/VoicemailProviderDemo/src/com/example/android/provider/VoicemailContract.java index b1d736176..c07579b8b 100644 --- a/samples/VoicemailProviderDemo/src/com/example/android/provider/VoicemailContract.java +++ b/samples/VoicemailProviderDemo/src/com/example/android/provider/VoicemailContract.java @@ -72,12 +72,10 @@ public class VoicemailContract { public static final String ACTION_NEW_VOICEMAIL = "android.intent.action.NEW_VOICEMAIL"; /** * Extra included in {@value Intent#ACTION_PROVIDER_CHANGED} and - * {@value #ACTION_NEW_VOICEMAIL} broadcast intents to indicate the package - * that caused the change in content provider. - * <p>Receivers of the broadcast can use this field to determine if this is - * a self change. + * {@value #ACTION_NEW_VOICEMAIL} broadcast intents to indicate if the receiving + * package made this change. */ - public static final String EXTRA_CHANGED_BY = "com.android.voicemail.extra.CHANGED_BY"; + public static final String EXTRA_SELF_CHANGE = "com.android.voicemail.extra.SELF_CHANGE"; /** The mime type for a collection of voicemails. */ public static final String DIR_TYPE = |