diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-19 20:10:37 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-19 20:10:37 +0000 |
commit | dd86ba3021d6a074bebb29b5c6b7f9a71c9054ec (patch) | |
tree | 4203e5be285d6a9ecb941838934dfca48026fd48 /chrome/common/url_constants.cc | |
parent | 030a56a592f60f718c45b4b053e91ed5047b2f91 (diff) | |
download | chromium_src-dd86ba3021d6a074bebb29b5c6b7f9a71c9054ec.zip chromium_src-dd86ba3021d6a074bebb29b5c6b7f9a71c9054ec.tar.gz chromium_src-dd86ba3021d6a074bebb29b5c6b7f9a71c9054ec.tar.bz2 |
Redirect chrome://extensions to the new chrome://settings/extensions (attempt 3).
I split up an API test because it times out (it is doing too much).
The other two modifications to the tests were needed because they were trying to open chrome://extensions in incognito.
In one case, the test just needed any page (so I switched to about:blank) and in the other we are testing for a condition that cannot happen anymorebecause chrome://extensions could be loaded in incognito but chrome://settingsdoesn't allow that -- it shunts the request to the non-incognito profile.
The test was testing that we don't crash in incognito, so I removed that test. Also change the URL for the Extension Settings page fromchrome://settings/extensionSettings -> chrome://settings/extensions.
BUG=87377, 96836
TEST=Well... type in chrome://extensions and notice it redirects.
TEST=chrome://settings/extensions (or chrome://extensions) should take you to the extension settings page, and chrome://settings/extensionSettings should not.
Review URL: http://codereview.chromium.org/7918019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101804 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/url_constants.cc')
-rw-r--r-- | chrome/common/url_constants.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/url_constants.cc b/chrome/common/url_constants.cc index cd3bd9e..122aefe 100644 --- a/chrome/common/url_constants.cc +++ b/chrome/common/url_constants.cc @@ -221,7 +221,7 @@ const char kClearBrowserDataSubPage[] = "clearBrowserData"; const char kContentSettingsSubPage[] = "content"; const char kContentSettingsExceptionsSubPage[] = "contentExceptions"; const char kHandlerSettingsSubPage[] = "handlers"; -const char kExtensionsSubPage[] = "extensionSettings"; +const char kExtensionsSubPage[] = "extensions"; const char kImportDataSubPage[] = "importData"; const char kInstantConfirmPage[] = "instantConfirm"; const char kLanguageOptionsSubPage[] = "languages"; |