diff options
author | Joe Fernandez <joefernandez@google.com> | 2015-03-03 21:10:40 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-03-03 21:10:41 +0000 |
commit | 2021ef006c1f0a93f2e53e5c48c60a65de65300e (patch) | |
tree | e9251b891de7207d90b977ac92277098dc57338f /core/java/android | |
parent | 70205fc199d361334f258aba72a6a7d4b143200c (diff) | |
parent | 2eedc9f96ad225bd4fb745215504f84ab88d8f67 (diff) | |
download | frameworks_base-2021ef006c1f0a93f2e53e5c48c60a65de65300e.zip frameworks_base-2021ef006c1f0a93f2e53e5c48c60a65de65300e.tar.gz frameworks_base-2021ef006c1f0a93f2e53e5c48c60a65de65300e.tar.bz2 |
Merge "resolved conflicts for merge of 5864f5ed to master"
Diffstat (limited to 'core/java/android')
-rw-r--r-- | core/java/android/app/admin/DeviceAdminReceiver.java | 6 | ||||
-rw-r--r-- | core/java/android/app/admin/DevicePolicyManager.java | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/core/java/android/app/admin/DeviceAdminReceiver.java b/core/java/android/app/admin/DeviceAdminReceiver.java index 9a8dc52..4fc990e 100644 --- a/core/java/android/app/admin/DeviceAdminReceiver.java +++ b/core/java/android/app/admin/DeviceAdminReceiver.java @@ -209,7 +209,8 @@ public class DeviceAdminReceiver extends BroadcastReceiver { * requested provisioning. In the device owner case the profile is the primary user. * The broadcast will also be limited to the {@link DeviceAdminReceiver} component * specified in the original intent or NFC bump that started the provisioning process - * (@see DevicePolicyManager#ACTION_PROVISION_MANAGED_PROFILE). + * (see {@link DevicePolicyManager#ACTION_PROVISION_MANAGED_PROFILE + * DevicePolicyManager.ACTION_PROVISION_MANAGED_PROFILE}). * * <p>A device admin application which listens to this intent can find out if the device was * provisioned for the device owner or profile owner case by calling respectively @@ -247,8 +248,9 @@ public class DeviceAdminReceiver extends BroadcastReceiver { /** * Name under which a DevicePolicy component publishes information * about itself. This meta-data must reference an XML resource containing - * a device-admin tag. XXX TO DO: describe syntax. + * a device-admin tag. */ + // TO DO: describe syntax. public static final String DEVICE_ADMIN_META_DATA = "android.app.device_admin"; private DevicePolicyManager mManager; diff --git a/core/java/android/app/admin/DevicePolicyManager.java b/core/java/android/app/admin/DevicePolicyManager.java index 6d5b4e0..170224d 100644 --- a/core/java/android/app/admin/DevicePolicyManager.java +++ b/core/java/android/app/admin/DevicePolicyManager.java @@ -104,9 +104,9 @@ public class DevicePolicyManager { * device as a personal and corporate device. The user which provisioning is started from and * the managed profile share a launcher. * - * <p>This intent will typically be sent by a mobile device management application (mdm). - * Provisioning adds a managed profile and sets the mdm as the profile owner who has full - * control over the profile + * <p>This intent will typically be sent by a mobile device management application (MDM). + * Provisioning adds a managed profile and sets the MDM as the profile owner who has full + * control over the profile. * * <p>This intent must contain the extra {@link #EXTRA_PROVISIONING_DEVICE_ADMIN_PACKAGE_NAME}. * |