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

Unified Diff: components/password_manager/core/browser/affiliation_utils.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/password_manager/core/browser/affiliation_utils.cc
diff --git a/components/password_manager/core/browser/affiliation_utils.cc b/components/password_manager/core/browser/affiliation_utils.cc
index 3cdc9eafb7a1ebc52a2e9cc77ae85bdaf7ce35a4..98c9099f6399bc3d9c638c4ce2d56e37f931b664 100644
--- a/components/password_manager/core/browser/affiliation_utils.cc
+++ b/components/password_manager/core/browser/affiliation_utils.cc
@@ -302,7 +302,7 @@ bool IsAffiliationBasedMatchingEnabled(const base::CommandLine& command_line) {
return false;
if (command_line.HasSwitch(switches::kEnableAffiliationBasedMatching))
return true;
- return StartsWithASCII(group_name, "Enabled", /*case_sensitive=*/false);
+ return base::StartsWithASCII(group_name, "Enabled", /*case_sensitive=*/false);
}
bool IsPropagatingPasswordChangesToWebCredentialsEnabled(

Powered by Google App Engine
This is Rietveld 408576698