diff options
author | bshe@chromium.org <bshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-28 22:23:48 +0000 |
---|---|---|
committer | bshe@chromium.org <bshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-28 22:23:48 +0000 |
commit | a7668a1bbb5f73d631f24c2dac7ae16ab7a43433 (patch) | |
tree | c42ecb58dc4d77f500d7e88863692deae4f69292 /chrome/browser/browser_about_handler.cc | |
parent | 32b82b8811610227d2edd4d70ca453f54755fe77 (diff) | |
download | chromium_src-a7668a1bbb5f73d631f24c2dac7ae16ab7a43433.zip chromium_src-a7668a1bbb5f73d631f24c2dac7ae16ab7a43433.tar.gz chromium_src-a7668a1bbb5f73d631f24c2dac7ae16ab7a43433.tar.bz2 |
Initial landing of experimental wallpaper ui(wallpaper manager).
This experimental wallpaper is disabled by default. To enable it, go to about:flags
and enable "experimental wallpaper UI" or add --experimental-wallpaper-ui to the
command line.
It currently designed as an extension which overrides url chrome://wallpapers. It's
basically the same as file manager and bookmark manager which overrides chrome://files
and chrome://bookmarks.
This is just a place holder for now.
BUG=118684
TEST=
Review URL: https://chromiumcodereview.appspot.com/10391116
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139265 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_about_handler.cc')
-rw-r--r-- | chrome/browser/browser_about_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/browser_about_handler.cc b/chrome/browser/browser_about_handler.cc index ac2fcea..ecb8f2c 100644 --- a/chrome/browser/browser_about_handler.cc +++ b/chrome/browser/browser_about_handler.cc @@ -76,6 +76,7 @@ const char* const kChromePaths[] = { chrome::kChromeUIOSCreditsHost, chrome::kChromeUIProxySettingsHost, chrome::kChromeUISystemInfoHost, + chrome::kChromeUIWallpaperHost, #endif }; @@ -164,4 +165,3 @@ std::vector<std::string> ChromePaths() { paths.push_back(kChromePaths[i]); return paths; } - |