diff options
| author | 2018-08-01 11:18:20 +0100 | |
|---|---|---|
| committer | 2018-08-01 18:14:10 +0100 | |
| commit | 9822ffc49e2d83f3c6cb91d835e8148b4fce649f (patch) | |
| tree | 2a263c5325347405f6cbed2f3e3fb8cc129fca3b | |
| parent | 0ffdfc877c67e59e62c725c6747c3ce843b0487e (diff) | |
Unclone autofill service setting in managed profile
The autofill service setting was cloned from the personal
profile to the managed profile in ag/2126240 to fix a bug where the
Settings UI did not control the managed profile. That fix caused
unintended interactions between both profiles. The setting has
now been 'uncloned' and a separate UI control introduced for each
profile in ag/4666600.
BUG: 3803359
Test: Tested manually by setting up a work profile and verifying that
the setting can be changed independently.
Change-Id: I7b5cac69cb8b4b0782538cb86f818904d6ad238d
| -rw-r--r-- | core/java/android/provider/Settings.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index ebd90bdc2414..3d0bb9532360 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -8205,7 +8205,6 @@ public final class Settings { CLONE_TO_MANAGED_PROFILE.add(ACCESSIBILITY_ENABLED); CLONE_TO_MANAGED_PROFILE.add(ALLOW_MOCK_LOCATION); CLONE_TO_MANAGED_PROFILE.add(ALLOWED_GEOLOCATION_ORIGINS); - CLONE_TO_MANAGED_PROFILE.add(AUTOFILL_SERVICE); CLONE_TO_MANAGED_PROFILE.add(DEFAULT_INPUT_METHOD); CLONE_TO_MANAGED_PROFILE.add(ENABLED_ACCESSIBILITY_SERVICES); CLONE_TO_MANAGED_PROFILE.add(ENABLED_INPUT_METHODS); |