| Index: chrome/browser/ui/webui/options2/options_ui2.cc
|
| diff --git a/chrome/browser/ui/webui/options2/options_ui2.cc b/chrome/browser/ui/webui/options2/options_ui2.cc
|
| index fe559e6f1248692d3a8531270d1bbed51d08ef22..c27178aa8e5df10c81e8b5c8b72b6dfb27aa0383 100644
|
| --- a/chrome/browser/ui/webui/options2/options_ui2.cc
|
| +++ b/chrome/browser/ui/webui/options2/options_ui2.cc
|
| @@ -77,6 +77,10 @@
|
| #include "chrome/browser/ui/webui/options2/chromeos/virtual_keyboard_manager_handler2.h"
|
| #endif
|
|
|
| +#if !defined(OS_WIN) && defined(USE_ASH)
|
| +#include "chrome/browser/ui/webui/options2/chromeos/set_wallpaper_options_handler2.h"
|
| +#endif
|
| +
|
| #if defined(USE_NSS)
|
| #include "chrome/browser/ui/webui/options2/certificate_manager_handler2.h"
|
| #endif
|
| @@ -226,6 +230,11 @@ OptionsUI::OptionsUI(content::WebUI* web_ui)
|
| AddOptionsPageUIHandler(localized_strings,
|
| new chromeos::options2::StatsOptionsHandler());
|
| #endif
|
| +#if !defined(OS_WIN) && defined(USE_ASH)
|
| + AddOptionsPageUIHandler(
|
| + localized_strings,
|
| + new chromeos::options2::SetWallpaperOptionsHandler());
|
| +#endif
|
| #if defined(USE_NSS)
|
| AddOptionsPageUIHandler(localized_strings, new CertificateManagerHandler());
|
| #endif
|
|
|