diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-02 18:12:34 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-02 18:12:34 +0000 |
commit | f94d3119c96ed2ef9a48475f3963a2d75441a991 (patch) | |
tree | 18d24d3dc91725553996af50d4f91e49112a17e1 /chrome/browser/ui/webui/options/options_ui_uitest.cc | |
parent | f671d792836ac7781f19d3bf605db25472a7e4a4 (diff) | |
download | chromium_src-f94d3119c96ed2ef9a48475f3963a2d75441a991.zip chromium_src-f94d3119c96ed2ef9a48475f3963a2d75441a991.tar.gz chromium_src-f94d3119c96ed2ef9a48475f3963a2d75441a991.tar.bz2 |
Convert chrome://extensions to a settings page within the options pages.
BUG=87378
TEST=The new settings page (chrome://settings/extensionSettings) should work the same as the old one (chrome://extensions).
Review URL: http://codereview.chromium.org/7794023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99402 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/webui/options/options_ui_uitest.cc')
-rw-r--r-- | chrome/browser/ui/webui/options/options_ui_uitest.cc | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/chrome/browser/ui/webui/options/options_ui_uitest.cc b/chrome/browser/ui/webui/options/options_ui_uitest.cc index 0330062..a1de2ea 100644 --- a/chrome/browser/ui/webui/options/options_ui_uitest.cc +++ b/chrome/browser/ui/webui/options/options_ui_uitest.cc @@ -149,14 +149,15 @@ TEST_F(OptionsUITest, NavBarCheck) { ASSERT_EQ(true, navbar_exist); // Check section headers in navbar. - // For ChromeOS, there should be 1 + 6: - // search, basics, personal, systerm, internet, under the hood and users - // For other platforms, there should 1 + 3: - // search, basics, personal and under the hood. + // For ChromeOS, there should be 1 + 7: + // Search, Basics, Personal, System, Internet, Under the Hood, + // Users and Extensions. + // For other platforms, there should 1 + 4: + // Search, Basics, Personal, Under the Hood and Extensions. #if defined(OS_CHROMEOS) - const int kExpectedSections = 1 + 6; + const int kExpectedSections = 1 + 7; #else - const int kExpectedSections = 1 + 3; + const int kExpectedSections = 1 + 4; #endif int num_of_sections = 0; ASSERT_TRUE(tab->ExecuteAndExtractInt(L"", |