Loading services/accessibility/java/com/android/server/accessibility/AccessibilityManagerService.java +6 −4 Original line number Diff line number Diff line Loading @@ -398,12 +398,14 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub { removeUser(intent.getIntExtra(Intent.EXTRA_USER_HANDLE, 0)); } else if (Intent.ACTION_USER_PRESENT.equals(action)) { // We will update when the automation service dies. synchronized (mLock) { UserState userState = getCurrentUserStateLocked(); if (!userState.isUiAutomationSuppressingOtherServices()) { if (readConfigurationForUserStateLocked(userState)) { onUserStateChangedLocked(userState); } } } } else if (Intent.ACTION_SETTING_RESTORED.equals(action)) { final String which = intent.getStringExtra(Intent.EXTRA_SETTING_NAME); if (Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES.equals(which)) { Loading Loading
services/accessibility/java/com/android/server/accessibility/AccessibilityManagerService.java +6 −4 Original line number Diff line number Diff line Loading @@ -398,12 +398,14 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub { removeUser(intent.getIntExtra(Intent.EXTRA_USER_HANDLE, 0)); } else if (Intent.ACTION_USER_PRESENT.equals(action)) { // We will update when the automation service dies. synchronized (mLock) { UserState userState = getCurrentUserStateLocked(); if (!userState.isUiAutomationSuppressingOtherServices()) { if (readConfigurationForUserStateLocked(userState)) { onUserStateChangedLocked(userState); } } } } else if (Intent.ACTION_SETTING_RESTORED.equals(action)) { final String which = intent.getStringExtra(Intent.EXTRA_SETTING_NAME); if (Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES.equals(which)) { Loading