Merge "Make screen events internal instead of AIDL" into udc-dev

This commit is contained in:
Aurélien Pomini
2023-05-10 10:24:54 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 20 deletions

View File

@@ -219,20 +219,6 @@ interface IWallpaperManager {
*/
void notifyGoingToSleep(int x, int y, in Bundle extras);
/**
* Called when the screen has been fully turned on and is visible.
*
* @hide
*/
void notifyScreenTurnedOn(int displayId);
/**
* Called when the screen starts turning on.
*
* @hide
*/
void notifyScreenTurningOn(int displayId);
/**
* Sets the wallpaper dim amount between [0f, 1f] which would be blended with the system default
* dimming. 0f doesn't add any additional dimming and 1f makes the wallpaper fully black.

View File

@@ -2585,8 +2585,7 @@ public class WallpaperManagerService extends IWallpaperManager.Stub
/**
* Propagates screen turned on event to wallpaper engine(s).
*/
@Override
public void notifyScreenTurnedOn(int displayId) {
private void notifyScreenTurnedOn(int displayId) {
synchronized (mLock) {
if (mIsLockscreenLiveWallpaperEnabled) {
for (WallpaperData data : getActiveWallpapers()) {
@@ -2621,13 +2620,10 @@ public class WallpaperManagerService extends IWallpaperManager.Stub
}
}
/**
* Propagate screen turning on event to wallpaper engine(s).
*/
@Override
public void notifyScreenTurningOn(int displayId) {
private void notifyScreenTurningOn(int displayId) {
synchronized (mLock) {
if (mIsLockscreenLiveWallpaperEnabled) {
for (WallpaperData data : getActiveWallpapers()) {