Loading services/autofill/java/com/android/server/autofill/Session.java +3 −3 Original line number Original line Diff line number Diff line Loading @@ -2374,9 +2374,9 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState @GuardedBy("mLock") @GuardedBy("mLock") private boolean shouldStartNewPartitionLocked(@NonNull AutofillId id) { private boolean shouldStartNewPartitionLocked(@NonNull AutofillId id) { final ViewState currentView = mViewStates.get(id); final ViewState currentView = mViewStates.get(id); if (mResponses == null && currentView != null if (mResponses == null) { && (currentView.getState() & ViewState.STATE_PENDING_CREATE_INLINE_REQUEST) == 0) { return currentView != null && (currentView.getState() return true; & ViewState.STATE_PENDING_CREATE_INLINE_REQUEST) == 0; } } if (mExpiredResponse) { if (mExpiredResponse) { Loading Loading
services/autofill/java/com/android/server/autofill/Session.java +3 −3 Original line number Original line Diff line number Diff line Loading @@ -2374,9 +2374,9 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState @GuardedBy("mLock") @GuardedBy("mLock") private boolean shouldStartNewPartitionLocked(@NonNull AutofillId id) { private boolean shouldStartNewPartitionLocked(@NonNull AutofillId id) { final ViewState currentView = mViewStates.get(id); final ViewState currentView = mViewStates.get(id); if (mResponses == null && currentView != null if (mResponses == null) { && (currentView.getState() & ViewState.STATE_PENDING_CREATE_INLINE_REQUEST) == 0) { return currentView != null && (currentView.getState() return true; & ViewState.STATE_PENDING_CREATE_INLINE_REQUEST) == 0; } } if (mExpiredResponse) { if (mExpiredResponse) { Loading