diff options
author | Makoto Onuki <omakoto@google.com> | 2012-09-12 16:11:13 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-09-12 16:11:13 -0700 |
commit | b11b9fc9972ba0ae7f3d13984c5c61a8d89ca142 (patch) | |
tree | 82ccc3ef4fea3fdcb89be7f56bbff38922a4be12 /core | |
parent | eb1f5349f8ac51e12e48497bbd2ae37badfe5009 (diff) | |
parent | 90ddc9040cbea31e2a91e07d216ef2f1bbccc849 (diff) | |
download | frameworks_base-b11b9fc9972ba0ae7f3d13984c5c61a8d89ca142.zip frameworks_base-b11b9fc9972ba0ae7f3d13984c5c61a8d89ca142.tar.gz frameworks_base-b11b9fc9972ba0ae7f3d13984c5c61a8d89ca142.tar.bz2 |
Merge "A new broadcast action which is sent when profile changes" into jb-mr1-dev
Diffstat (limited to 'core')
-rwxr-xr-x | core/java/android/provider/ContactsContract.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java index 08621ea..54a2273 100755 --- a/core/java/android/provider/ContactsContract.java +++ b/core/java/android/provider/ContactsContract.java @@ -7900,6 +7900,16 @@ public final class ContactsContract { "com.android.contacts.action.GET_MULTIPLE_PHONES"; /** + * A broadcast action which is sent when any change has been made to the profile, such + * as the profile name or the picture. A receiver must have + * the android.permission.READ_PROFILE permission. + * + * @hide + */ + public static final String ACTION_PROFILE_CHANGED = + "android.provider.Contacts.PROFILE_CHANGED"; + + /** * Used with {@link #SHOW_OR_CREATE_CONTACT} to force creating a new * contact if no matching contact found. Otherwise, default behavior is * to prompt user with dialog before creating. |