diff options
| author | 2018-01-04 14:28:52 -0800 | |
|---|---|---|
| committer | 2018-01-04 21:36:00 -0800 | |
| commit | eb486d48a284147bf49d36e97eb32c6a0d9f8b80 (patch) | |
| tree | a185755144f937b9be2cb68453b9b3fe4f0726f6 | |
| parent | c9cbc3e5fcb1c3b9683c617df0c3b645d6516b02 (diff) | |
Do not block ambient mode IPC
This can happen asynchronously, blocking may lower
frame rate.
Bug: 70857288
Test: press power button, look at AoD wallpaper
Change-Id: I453082adc0d5f58eb8e7cbf7663fca0cd0183075
| -rw-r--r-- | core/java/android/app/IWallpaperManager.aidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/IWallpaperManager.aidl b/core/java/android/app/IWallpaperManager.aidl index 4ba0ff2aa531..5ef4be18ef2f 100644 --- a/core/java/android/app/IWallpaperManager.aidl +++ b/core/java/android/app/IWallpaperManager.aidl @@ -159,5 +159,5 @@ interface IWallpaperManager { /** * Called from SystemUI when it shows the AoD UI. */ - void setInAmbientMode(boolean inAmbientMode, boolean animated); + oneway void setInAmbientMode(boolean inAmbientMode, boolean animated); } |