diff options
| author | Santiago Etchebehere <santie@google.com> | 2020-04-17 10:16:25 -0700 |
|---|---|---|
| committer | Santiago Etchebehere <santie@google.com> | 2020-04-17 11:53:36 -0700 |
| commit | 9548fd322005c8a71815a16614818bfd8525c84c (patch) | |
| tree | 69890775c28f60ff97c1b2ca4b94831ff1200e38 /core/java | |
| parent | f996e4240d63453e8d91f4108fb99efa2b0c0cec (diff) | |
Make setWallpaperZoomOut call oneway
There's no need to keep it synchronous
Bug: 154304487
Test: atest NotificationShadeWindowViewTest
Test: atest WallpaperControllerTests
Test: manual
Change-Id: I547e05fb4e2a5f2d30cfc5de354c36cd9070e65b
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/view/IWindowSession.aidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/view/IWindowSession.aidl b/core/java/android/view/IWindowSession.aidl index a0527b7434fc..25e81114d86f 100644 --- a/core/java/android/view/IWindowSession.aidl +++ b/core/java/android/view/IWindowSession.aidl @@ -225,13 +225,13 @@ interface IWindowSession { * For multi screen launcher type applications, xstep and ystep indicate * how big the increment is from one screen to another. */ - void setWallpaperPosition(IBinder windowToken, float x, float y, float xstep, float ystep); + oneway void setWallpaperPosition(IBinder windowToken, float x, float y, float xstep, float ystep); /** * For wallpaper windows, sets the scale of the wallpaper based on * SystemUI behavior. */ - void setWallpaperZoomOut(IBinder windowToken, float scale); + oneway void setWallpaperZoomOut(IBinder windowToken, float scale); /** * For wallpaper windows, sets whether the wallpaper should actually be |
