Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(652)

Unified Diff: components/wallpaper/wallpaper_manager_base.h

Issue 2931063004: Extract colors from wallpaper and dynamically update login screen overlay (Closed)
Patch Set: Address comments Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/wallpaper/wallpaper_manager_base.h
diff --git a/components/wallpaper/wallpaper_manager_base.h b/components/wallpaper/wallpaper_manager_base.h
index 88601cc801e5ad5ce87d5e76e460f08e75e5e7b9..6424e2c05667b7f81ed5e5228baf43766b141b03 100644
--- a/components/wallpaper/wallpaper_manager_base.h
+++ b/components/wallpaper/wallpaper_manager_base.h
@@ -194,8 +194,14 @@ class WALLPAPER_EXPORT WallpaperManagerBase {
class Observer {
public:
virtual ~Observer() {}
+ // Notified when the wallpaper animation finishes.
virtual void OnWallpaperAnimationFinished(const AccountId& account_id) = 0;
+ // Notified when the wallpaper is updated and the color calculation results
+ // change.
+ virtual void OnWallpaperColorsChanged() {}
+ // Notified when the wallpaper is updated.
virtual void OnUpdateWallpaperForTesting() {}
+ // Notified when the wallpaper pending list is empty.
virtual void OnPendingListEmptyForTesting() {}
};

Powered by Google App Engine
This is Rietveld 408576698