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

Commit 64176671 authored by Aurélien Pomini's avatar Aurélien Pomini Committed by Automerger Merge Worker
Browse files

Move ImageWallpaper.java into package 'com.android.systemui.wallpapers' am: 369f1b97

parents 7e919c4d 369f1b97
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -519,7 +519,7 @@ public abstract class WallpaperService extends Service {
         * {@link #addLocalColorsAreas(List)}
         * {@link #addLocalColorsAreas(List)}
         * {@link #removeLocalColorsAreas(List)}
         * {@link #removeLocalColorsAreas(List)}
         * When local colors change, call {@link #notifyLocalColorsChanged(List, List)}
         * When local colors change, call {@link #notifyLocalColorsChanged(List, List)}
         * See {@link com.android.systemui.ImageWallpaper} for an example
         * See {@link com.android.systemui.wallpapers.ImageWallpaper} for an example
         * @hide
         * @hide
         */
         */
        public boolean supportsLocalColorExtraction() {
        public boolean supportsLocalColorExtraction() {
+1 −1
Original line number Original line Diff line number Diff line
@@ -1733,7 +1733,7 @@
    <item name="default_lock_wallpaper" type="drawable">@null</item>
    <item name="default_lock_wallpaper" type="drawable">@null</item>


    <!-- Component name of the built in wallpaper used to display bitmap wallpapers. This must not be null. -->
    <!-- Component name of the built in wallpaper used to display bitmap wallpapers. This must not be null. -->
    <string name="image_wallpaper_component" translatable="false">com.android.systemui/com.android.systemui.ImageWallpaper</string>
    <string name="image_wallpaper_component" translatable="false">com.android.systemui/com.android.systemui.wallpapers.ImageWallpaper</string>


    <!-- True if WallpaperService is enabled -->
    <!-- True if WallpaperService is enabled -->
    <bool name="config_enableWallpaperService">true</bool>
    <bool name="config_enableWallpaperService">true</bool>
+1 −1
Original line number Original line Diff line number Diff line
@@ -414,7 +414,7 @@
            </intent-filter>
            </intent-filter>
        </receiver>
        </receiver>


        <service android:name=".ImageWallpaper"
        <service android:name=".wallpapers.ImageWallpaper"
                android:singleUser="true"
                android:singleUser="true"
                android:permission="android.permission.BIND_WALLPAPER"
                android:permission="android.permission.BIND_WALLPAPER"
                android:exported="true" />
                android:exported="true" />
+1 −1
Original line number Original line Diff line number Diff line
@@ -18,7 +18,6 @@ package com.android.systemui.dagger;


import android.app.Service;
import android.app.Service;


import com.android.systemui.ImageWallpaper;
import com.android.systemui.SystemUIService;
import com.android.systemui.SystemUIService;
import com.android.systemui.doze.DozeService;
import com.android.systemui.doze.DozeService;
import com.android.systemui.dreams.DreamOverlayService;
import com.android.systemui.dreams.DreamOverlayService;
@@ -26,6 +25,7 @@ import com.android.systemui.dump.SystemUIAuxiliaryDumpService;
import com.android.systemui.keyguard.KeyguardService;
import com.android.systemui.keyguard.KeyguardService;
import com.android.systemui.screenrecord.RecordingService;
import com.android.systemui.screenrecord.RecordingService;
import com.android.systemui.statusbar.phone.NotificationListenerWithPlugins;
import com.android.systemui.statusbar.phone.NotificationListenerWithPlugins;
import com.android.systemui.wallpapers.ImageWallpaper;


import dagger.Binds;
import dagger.Binds;
import dagger.Module;
import dagger.Module;
+1 −1
Original line number Original line Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 * limitations under the License.
 */
 */


package com.android.systemui;
package com.android.systemui.wallpapers;


import android.app.WallpaperColors;
import android.app.WallpaperColors;
import android.graphics.Bitmap;
import android.graphics.Bitmap;
Loading