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

Unified Diff: chrome/browser/autofill/autofill_browsertest.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
« no previous file with comments | « chrome/browser/autocomplete/url_index_private_data.cc ('k') | chrome/browser/chromeos/chromeos_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/autofill_browsertest.cc
diff --git a/chrome/browser/autofill/autofill_browsertest.cc b/chrome/browser/autofill/autofill_browsertest.cc
index c280cb8e5bcb9902da1405474d2966b6b5514bc5..2da8bad3d271393db6d0a1578b6f7b2f58bbc6cd 100644
--- a/chrome/browser/autofill/autofill_browsertest.cc
+++ b/chrome/browser/autofill/autofill_browsertest.cc
@@ -246,7 +246,7 @@ class AutofillTest : public InProcessBrowserTest {
base::SplitString(data, '\n', &lines);
int parsed_profiles = 0;
for (size_t i = 0; i < lines.size(); ++i) {
- if (StartsWithASCII(lines[i], "#", false))
+ if (base::StartsWithASCII(lines[i], "#", false))
continue;
std::vector<std::string> fields;
« no previous file with comments | « chrome/browser/autocomplete/url_index_private_data.cc ('k') | chrome/browser/chromeos/chromeos_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698