Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2b0dab0d authored by Lucas Dupin's avatar Lucas Dupin
Browse files

Hide WallpaperService.Engine colors API.

All apps that need it are bundled in DR.
We need to unhide it for MR1.

Test: make
Bug: 62490115
Change-Id: I58d0a020ec7b1af8cb2659d6957de4bf4d4fa596
parent adfc1ad8
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -37581,12 +37581,10 @@ package android.service.wallpaper {
    method public int getDesiredMinimumHeight();
    method public int getDesiredMinimumWidth();
    method public android.view.SurfaceHolder getSurfaceHolder();
    method public void invalidateColors();
    method public boolean isPreview();
    method public boolean isVisible();
    method public void onApplyWindowInsets(android.view.WindowInsets);
    method public android.os.Bundle onCommand(java.lang.String, int, int, int, android.os.Bundle, boolean);
    method public android.app.WallpaperColors onComputeWallpaperColors();
    method public void onCreate(android.view.SurfaceHolder);
    method public void onDesiredSizeChanged(int, int);
    method public void onDestroy();
+0 −2
Original line number Diff line number Diff line
@@ -40793,12 +40793,10 @@ package android.service.wallpaper {
    method public int getDesiredMinimumHeight();
    method public int getDesiredMinimumWidth();
    method public android.view.SurfaceHolder getSurfaceHolder();
    method public void invalidateColors();
    method public boolean isPreview();
    method public boolean isVisible();
    method public void onApplyWindowInsets(android.view.WindowInsets);
    method public android.os.Bundle onCommand(java.lang.String, int, int, int, android.os.Bundle, boolean);
    method public android.app.WallpaperColors onComputeWallpaperColors();
    method public void onCreate(android.view.SurfaceHolder);
    method public void onDesiredSizeChanged(int, int);
    method public void onDestroy();
+0 −2
Original line number Diff line number Diff line
@@ -37788,12 +37788,10 @@ package android.service.wallpaper {
    method public int getDesiredMinimumHeight();
    method public int getDesiredMinimumWidth();
    method public android.view.SurfaceHolder getSurfaceHolder();
    method public void invalidateColors();
    method public boolean isPreview();
    method public boolean isVisible();
    method public void onApplyWindowInsets(android.view.WindowInsets);
    method public android.os.Bundle onCommand(java.lang.String, int, int, int, android.os.Bundle, boolean);
    method public android.app.WallpaperColors onComputeWallpaperColors();
    method public void onCreate(android.view.SurfaceHolder);
    method public void onDesiredSizeChanged(int, int);
    method public void onDestroy();
+2 −0
Original line number Diff line number Diff line
@@ -548,6 +548,7 @@ public abstract class WallpaperService extends Service {
        /**
         * Notifies the engine that wallpaper colors changed significantly.
         * This will trigger a {@link #onComputeWallpaperColors()} call.
         * @hide
         */
        public void invalidateColors() {
            try {
@@ -564,6 +565,7 @@ public abstract class WallpaperService extends Service {
         * you might want to call {@link #invalidateColors()} in a near future.
         *
         * @return List of wallpaper colors and their weights.
         * @hide
         */
        public @Nullable WallpaperColors onComputeWallpaperColors() {
            return null;