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

Unified Diff: chrome/browser/ui/webui/settings/appearance_handler.h

Issue 1896283003: [MD settings] appearance theme and wallpaper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 4 years, 8 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: chrome/browser/ui/webui/settings/appearance_handler.h
diff --git a/chrome/browser/ui/webui/settings/appearance_handler.h b/chrome/browser/ui/webui/settings/appearance_handler.h
index b5fd8f03d27de79c448318018edb9c85eda2a139..1cfa8d9f29a02bcfeaaa1b595da8d5213287e24a 100644
--- a/chrome/browser/ui/webui/settings/appearance_handler.h
+++ b/chrome/browser/ui/webui/settings/appearance_handler.h
@@ -42,10 +42,15 @@ class AppearanceHandler : public SettingsPageUIHandler,
bool ResetThemeEnabled() const;
// Resets the UI theme of the browser to the default theme.
- void ResetTheme(const base::ListValue*);
+ void HandleResetTheme(const base::ListValue* args);
// Sends the enabled state of the reset-theme control to the JS.
- void GetResetThemeEnabled(const base::ListValue* args);
+ void HandleGetResetThemeEnabled(const base::ListValue* args);
+
+#if defined(OS_CHROMEOS)
+ // Open the wallpaper manager app.
+ void HandleOpenWallpaperManager(const base::ListValue* args);
+#endif
Profile* profile_; // Weak pointer.

Powered by Google App Engine
This is Rietveld 408576698