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

Unified Diff: trunk/src/chrome/browser/ssl/ssl_browser_tests.cc

Issue 474483002: Revert 289312 "Move StringToUpperASCII and LowerCaseEqualsASCII ..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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: trunk/src/chrome/browser/ssl/ssl_browser_tests.cc
===================================================================
--- trunk/src/chrome/browser/ssl/ssl_browser_tests.cc (revision 289319)
+++ trunk/src/chrome/browser/ssl/ssl_browser_tests.cc (working copy)
@@ -684,7 +684,7 @@
// The title will be changed to 'PASS'.
ui_test_utils::NavigateToURL(browser(), master_url);
const base::string16 result = watcher.WaitAndGetTitle();
- EXPECT_TRUE(base::LowerCaseEqualsASCII(result, "pass"));
+ EXPECT_TRUE(LowerCaseEqualsASCII(result, "pass"));
// Close tabs which contains the test page.
for (int i = 0; i < 16; ++i)
@@ -721,7 +721,7 @@
// Test page run a WebSocket wss connection test. The result will be shown
// as page title.
const base::string16 result = watcher.WaitAndGetTitle();
- EXPECT_TRUE(base::LowerCaseEqualsASCII(result, "pass"));
+ EXPECT_TRUE(LowerCaseEqualsASCII(result, "pass"));
}
#if defined(USE_NSS)
@@ -809,7 +809,7 @@
// Test page runs a WebSocket wss connection test. The result will be shown
// as page title.
const base::string16 result = watcher.WaitAndGetTitle();
- EXPECT_TRUE(base::LowerCaseEqualsASCII(result, "pass"));
+ EXPECT_TRUE(LowerCaseEqualsASCII(result, "pass"));
}
#endif // defined(USE_NSS)
@@ -1766,7 +1766,7 @@
// Test page run a WebSocket wss connection test. The result will be shown
// as page title.
const base::string16 result = watcher.WaitAndGetTitle();
- EXPECT_TRUE(base::LowerCaseEqualsASCII(result, "pass"));
+ EXPECT_TRUE(LowerCaseEqualsASCII(result, "pass"));
}
// Verifies that the interstitial can proceed, even if JavaScript is disabled.

Powered by Google App Engine
This is Rietveld 408576698