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

Unified Diff: content/browser/manifest/manifest_browsertest.cc

Issue 1176583003: Move EqualsASCII to the base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util2
Patch Set: Created 5 years, 6 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: content/browser/manifest/manifest_browsertest.cc
diff --git a/content/browser/manifest/manifest_browsertest.cc b/content/browser/manifest/manifest_browsertest.cc
index 490e7047048d22cd8afde5ebc3de61db18d6f7b8..0393710aef4f78a50ba3fd1350048c8e5768d306 100644
--- a/content/browser/manifest/manifest_browsertest.cc
+++ b/content/browser/manifest/manifest_browsertest.cc
@@ -476,7 +476,7 @@ IN_PROC_BROWSER_TEST_F(ManifestBrowserTest, UseCredentialsSendCookies) {
// The custom embedded test server will fill the name field with the cookie
// content.
- EXPECT_TRUE(EqualsASCII(manifest().name.string(), "foobar"));
+ EXPECT_TRUE(base::EqualsASCII(manifest().name.string(), "foobar"));
}
namespace {
@@ -532,7 +532,7 @@ IN_PROC_BROWSER_TEST_F(ManifestBrowserTest, NoUseCredentialsNoCookies) {
// The custom embedded test server will fill set the name to 'no cookies' if
// it did not find cookies.
- EXPECT_TRUE(EqualsASCII(manifest().name.string(), "no cookies"));
+ EXPECT_TRUE(base::EqualsASCII(manifest().name.string(), "no cookies"));
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698