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

Unified Diff: components/search_engines/template_url_service_util_unittest.cc

Issue 1172183002: Move StartsWith[ASCII] to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util3
Patch Set: merger 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: components/search_engines/template_url_service_util_unittest.cc
diff --git a/components/search_engines/template_url_service_util_unittest.cc b/components/search_engines/template_url_service_util_unittest.cc
index 65b992af8e19060ebdb41978b51f5d12d794b6c0..f29398344d4a7d5c49bee8f4d1f9b1d93be171c3 100644
--- a/components/search_engines/template_url_service_util_unittest.cc
+++ b/components/search_engines/template_url_service_util_unittest.cc
@@ -95,7 +95,7 @@ TEST(TemplateURLServiceUtilTest, RemoveDuplicatePrepopulateIDs) {
prepopulated_turls.size() + num_non_prepopulated_urls);
for (TemplateURLService::TemplateURLVector::const_iterator itr =
local_turls.begin(); itr != local_turls.end(); ++itr) {
- EXPECT_TRUE(
- StartsWith((*itr)->keyword(), base::ASCIIToUTF16("winner"), true));
+ EXPECT_TRUE(base::StartsWith((*itr)->keyword(),
+ base::ASCIIToUTF16("winner"), true));
}
}

Powered by Google App Engine
This is Rietveld 408576698