Merge "Wait for keyguard draw before stopping boot animation" into oc-dev

am: ff4cc4ebb5

Change-Id: I1c1437f83387aa4974ee991502018f5b59baf248
This commit is contained in:
Keun-young Park
2017-05-19 20:14:50 +00:00
committed by android-build-merger
6 changed files with 95 additions and 39 deletions

View File

@@ -1684,4 +1684,16 @@ public interface WindowManagerPolicy {
public void onConfigurationChanged();
public boolean shouldRotateSeamlessly(int oldRotation, int newRotation);
/**
* Called when System UI has been started.
*/
void onSystemUiStarted();
/**
* Checks whether the policy is ready for dismissing the boot animation and completing the boot.
*
* @return true if ready; false otherwise.
*/
boolean canDismissBootAnimation();
}