diff options
author | dpolukhin@chromium.org <dpolukhin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-27 11:44:36 +0000 |
---|---|---|
committer | dpolukhin@chromium.org <dpolukhin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-27 11:44:36 +0000 |
commit | 5272851e482e081b58055d8f8470fef014704b09 (patch) | |
tree | 219f6d52c6dea64a243e999099ddd59d7fab2470 /chrome/common/url_constants.cc | |
parent | b47fc93828d237045e1c62236be80e94d1913b28 (diff) | |
download | chromium_src-5272851e482e081b58055d8f8470fef014704b09.zip chromium_src-5272851e482e081b58055d8f8470fef014704b09.tar.gz chromium_src-5272851e482e081b58055d8f8470fef014704b09.tar.bz2 |
Revert 57635: Implement about:labs
Original CL: http://codereview.chromium.org/3152055
Implement about:labs
Tabpose is currently the only lab on mac, tabs-on-left the only lab on windows. Nothing for linux yet.
BUG=53399
TEST=Go to about:labs. Should have one feature on windows and osx each, none on linux yet. about:labs should not be visible on the stable channel. Labs that were enabled on the dev channel should not be enabled on the stable channel. about:labs in chromeos should still work (they use a different implementation)
TBR=thakis@chromium.org
Review URL: http://codereview.chromium.org/3256001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57664 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/url_constants.cc')
-rw-r--r-- | chrome/common/url_constants.cc | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/chrome/common/url_constants.cc b/chrome/common/url_constants.cc index 031a13d..0270e48 100644 --- a/chrome/common/url_constants.cc +++ b/chrome/common/url_constants.cc @@ -41,23 +41,21 @@ const char* kSavableSchemes[] = { NULL }; -const char kAboutAboutURL[] = "about:about"; const char kAboutAppCacheInternalsURL[] = "about:appcache-internals"; const char kAboutBlankURL[] = "about:blank"; const char kAboutCacheURL[] = "about:cache"; const char kAboutCrashURL[] = "about:crash"; const char kAboutCreditsURL[] = "about:credits"; -const char kAboutDNSURL[] = "about:dns"; const char kAboutHangURL[] = "about:hang"; -const char kAboutHistogramsURL[] = "about:histograms"; -const char kAboutLabsURL[] = "about:labs"; const char kAboutMemoryURL[] = "about:memory"; const char kAboutNetInternalsURL[] = "about:net-internals"; const char kAboutPluginsURL[] = "about:plugins"; const char kAboutShorthangURL[] = "about:shorthang"; const char kAboutSystemURL[] = "about:system"; const char kAboutTermsURL[] = "about:terms"; -const char kAboutVaporwareURL[] = "about:vaporware"; +const char kAboutAboutURL[] = "about:about"; +const char kAboutDNSURL[] = "about:dns"; +const char kAboutHistogramsURL[] = "about:histograms"; const char kAboutVersionURL[] = "about:version"; // Use an obfuscated URL to make this nondiscoverable, we only want this @@ -73,11 +71,10 @@ const char kChromeUIDownloadsURL[] = "chrome://downloads/"; const char kChromeUIExtensionsURL[] = "chrome://extensions/"; const char kChromeUIFavIconURL[] = "chrome://favicon/"; const char kChromeUIFileBrowseURL[] = "chrome://filebrowse/"; -const char kChromeUIHistory2URL[] = "chrome://history2/"; const char kChromeUIHistoryURL[] = "chrome://history/"; +const char kChromeUIHistory2URL[] = "chrome://history2/"; const char kChromeUIImageBurnerURL[] = "chrome://imageburner/"; const char kChromeUIIPCURL[] = "chrome://about/ipc"; -const char kChromeUILabsURL[] = "chrome://labs/"; const char kChromeUIMediaplayerURL[] = "chrome://mediaplayer/"; const char kChromeUINewTabURL[] = "chrome://newtab"; const char kChromeUIOptionsURL[] = "chrome://options/"; @@ -98,7 +95,6 @@ const char kChromeUIHistoryHost[] = "history"; const char kChromeUIHistory2Host[] = "history2"; const char kChromeUIImageBurnerHost[] = "imageburner"; const char kChromeUIInspectorHost[] = "inspector"; -const char kChromeUILabsHost[] = "labs"; const char kChromeUIMediaplayerHost[] = "mediaplayer"; const char kChromeUINetInternalsHost[] = "net-internals"; const char kChromeUINewTabHost[] = "newtab"; |