Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(809)

Unified Diff: chrome/browser/ui/webui/options/options_ui_uitest.cc

Issue 7794023: Convert chrome://extensions to a settings page within the options pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options/options_ui_uitest.cc
===================================================================
--- chrome/browser/ui/webui/options/options_ui_uitest.cc (revision 99349)
+++ chrome/browser/ui/webui/options/options_ui_uitest.cc (working copy)
@@ -149,14 +149,15 @@
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"",

Powered by Google App Engine
This is Rietveld 408576698