Loading services/autofill/java/com/android/server/autofill/AutofillManagerService.java +8 −1 Original line number Diff line number Diff line Loading @@ -288,7 +288,14 @@ public final class AutofillManagerService boolean isTemporary) { mAugmentedAutofillState.setServiceInfo(userId, serviceName, isTemporary); synchronized (mLock) { getServiceForUserLocked(userId).updateRemoteAugmentedAutofillService(); final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); if (service == null) { // If we cannot get the service from the services cache, it will call // updateRemoteAugmentedAutofillService() finally. Skip call this update again. getServiceForUserLocked(userId); } else { service.updateRemoteAugmentedAutofillService(); } } } Loading Loading
services/autofill/java/com/android/server/autofill/AutofillManagerService.java +8 −1 Original line number Diff line number Diff line Loading @@ -288,7 +288,14 @@ public final class AutofillManagerService boolean isTemporary) { mAugmentedAutofillState.setServiceInfo(userId, serviceName, isTemporary); synchronized (mLock) { getServiceForUserLocked(userId).updateRemoteAugmentedAutofillService(); final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); if (service == null) { // If we cannot get the service from the services cache, it will call // updateRemoteAugmentedAutofillService() finally. Skip call this update again. getServiceForUserLocked(userId); } else { service.updateRemoteAugmentedAutofillService(); } } } Loading