| 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.
|
|
|
|
|