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

Unified Diff: ash/shell.h

Issue 9764012: Restore to user selected wallpaper after browser crash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to trunk Created 8 years, 9 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: ash/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index 488444a17f75e69f179b17ce80b432fee2a3bd9b..23a13cdce010f8f3f05b1c2a265379da7f578859 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -51,6 +51,7 @@ class ShellDelegate;
class ShellObserver;
class SystemTrayDelegate;
class SystemTray;
+class UserWallpaperDelegate;
class VideoDetector;
class WindowCycleController;
@@ -196,6 +197,9 @@ class ASH_EXPORT Shell {
ShellDelegate* delegate() { return delegate_.get(); }
SystemTrayDelegate* tray_delegate() { return tray_delegate_.get(); }
+ UserWallpaperDelegate* user_wallpaper_delegate() {
+ return user_wallpaper_delegate_.get();
+ }
Launcher* launcher() { return launcher_.get(); }
@@ -259,6 +263,7 @@ class ASH_EXPORT Shell {
scoped_ptr<ShellDelegate> delegate_;
scoped_ptr<SystemTrayDelegate> tray_delegate_;
+ scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_;
scoped_ptr<Launcher> launcher_;

Powered by Google App Engine
This is Rietveld 408576698