diff options
author | Nicolas Prevot <nprevot@google.com> | 2015-01-14 19:24:16 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-01-14 19:24:16 +0000 |
commit | f23f355645297e7f9a3ce3a21b0fe54ce48ea9b8 (patch) | |
tree | e3225d196780b02e03cc45a0f5091811f389bce5 /core/java/android/app | |
parent | 5fab6ad326fc14f112bd3927548c5069e45dec38 (diff) | |
parent | 206d31f598d499dd5a8659235afada35c3417f94 (diff) | |
download | frameworks_base-f23f355645297e7f9a3ce3a21b0fe54ce48ea9b8.zip frameworks_base-f23f355645297e7f9a3ce3a21b0fe54ce48ea9b8.tar.gz frameworks_base-f23f355645297e7f9a3ce3a21b0fe54ce48ea9b8.tar.bz2 |
am 206d31f5: am 42ebaa43: Merge "Make documentation for cross-profile intent filters clearer." into lmp-mr1-dev
* commit '206d31f598d499dd5a8659235afada35c3417f94':
Make documentation for cross-profile intent filters clearer.
Diffstat (limited to 'core/java/android/app')
-rw-r--r-- | core/java/android/app/admin/DevicePolicyManager.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/core/java/android/app/admin/DevicePolicyManager.java b/core/java/android/app/admin/DevicePolicyManager.java index 1211260..7e15ec2 100644 --- a/core/java/android/app/admin/DevicePolicyManager.java +++ b/core/java/android/app/admin/DevicePolicyManager.java @@ -465,20 +465,20 @@ public class DevicePolicyManager { = "android.app.action.SET_NEW_PASSWORD"; /** - * Flag used by {@link #addCrossProfileIntentFilter} to allow access - * <em>from</em> a managed profile <em>to</em> its parent. That is, any - * matching activities in the parent profile are included in the - * disambiguation list shown when an app in the managed profile calls - * {@link Activity#startActivity(Intent)}. + * Flag used by {@link #addCrossProfileIntentFilter} to allow activities in + * the parent profile to access intents sent from the managed profile. + * That is, when an app in the managed profile calls + * {@link Activity#startActivity(Intent)}, the intent can be resolved by a + * matching activity in the parent profile. */ public static final int FLAG_PARENT_CAN_ACCESS_MANAGED = 0x0001; /** - * Flag used by {@link #addCrossProfileIntentFilter} to allow access - * <em>from</em> a parent <em>to</em> its managed profile. That is, any - * matching activities in the managed profile are included in the - * disambiguation list shown when an app in the parent profile calls - * {@link Activity#startActivity(Intent)}. + * Flag used by {@link #addCrossProfileIntentFilter} to allow activities in + * the managed profile to access intents sent from the parent profile. + * That is, when an app in the parent profile calls + * {@link Activity#startActivity(Intent)}, the intent can be resolved by a + * matching activity in the managed profile. */ public static final int FLAG_MANAGED_CAN_ACCESS_PARENT = 0x0002; |