Merge "Do not immediately perform traversals when executing transition" into pi-dev

This commit is contained in:
Jorim Jaggi
2018-05-15 04:13:38 +00:00
committed by Android (Google) Code Review

View File

@@ -2691,12 +2691,7 @@ public class WindowManagerService extends IWindowManager.Stub
+ " Callers=" + Debug.getCallers(5));
if (mAppTransition.isTransitionSet()) {
mAppTransition.setReady();
final long origId = Binder.clearCallingIdentity();
try {
mWindowPlacerLocked.performSurfacePlacement();
} finally {
Binder.restoreCallingIdentity(origId);
}
mWindowPlacerLocked.requestTraversal();
}
}
}