diff options
author | Jorim Jaggi <jjaggi@google.com> | 2014-05-31 01:09:18 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-05-31 01:09:19 +0000 |
commit | d48d7a6d506a72cc519e05fc4c124087b0db221b (patch) | |
tree | 1991e38e0d11b8d274fd16b4577df8e876993595 /core/java | |
parent | 54b5e5bdf621449a1806ff2971b95df273069c44 (diff) | |
parent | e29b2dbc762bfa66093d76f5a65f55328d8753c9 (diff) | |
download | frameworks_base-d48d7a6d506a72cc519e05fc4c124087b0db221b.zip frameworks_base-d48d7a6d506a72cc519e05fc4c124087b0db221b.tar.gz frameworks_base-d48d7a6d506a72cc519e05fc4c124087b0db221b.tar.bz2 |
Merge "Fade scrim in unlock animation." into lmp-preview-dev
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/android/view/WindowManagerPolicy.java | 5 | ||||
-rw-r--r-- | core/java/com/android/internal/policy/IKeyguardService.aidl | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/core/java/android/view/WindowManagerPolicy.java b/core/java/android/view/WindowManagerPolicy.java index d45d686..2b4677c 100644 --- a/core/java/android/view/WindowManagerPolicy.java +++ b/core/java/android/view/WindowManagerPolicy.java @@ -1199,6 +1199,9 @@ public interface WindowManagerPolicy { /** * Notifies the keyguard to start fading out. + * + * @param startTime the start time of the animation in uptime milliseconds + * @param fadeoutDuration the duration of the exit animation, in milliseconds */ - public void startKeyguardExitAnimation(long fadeoutDuration); + public void startKeyguardExitAnimation(long startTime, long fadeoutDuration); } diff --git a/core/java/com/android/internal/policy/IKeyguardService.aidl b/core/java/com/android/internal/policy/IKeyguardService.aidl index f22800c..a5421f5 100644 --- a/core/java/com/android/internal/policy/IKeyguardService.aidl +++ b/core/java/com/android/internal/policy/IKeyguardService.aidl @@ -60,6 +60,9 @@ interface IKeyguardService { /** * Notifies that the activity behind has now been drawn and it's safe to remove the wallpaper * and keyguard flag. + * + * @param startTime the start time of the animation in uptime milliseconds + * @param fadeoutDuration the duration of the exit animation, in milliseconds */ - oneway void startKeyguardExitAnimation(long fadeoutDuration); + oneway void startKeyguardExitAnimation(long startTime, long fadeoutDuration); } |