| 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 bd4bc5b2e8504b018cda2994bafab8fe7fed3151..2b16e8b6290030529bc4f829e03535f0abce1759 100644
|
| --- a/components/password_manager/core/browser/affiliation_utils.cc
|
| +++ b/components/password_manager/core/browser/affiliation_utils.cc
|
| @@ -302,7 +302,8 @@ bool IsAffiliationBasedMatchingEnabled(const base::CommandLine& command_line) {
|
| return false;
|
| if (command_line.HasSwitch(switches::kEnableAffiliationBasedMatching))
|
| return true;
|
| - return base::StartsWithASCII(group_name, "Enabled", /*case_sensitive=*/false);
|
| + return base::StartsWith(group_name, "Enabled",
|
| + base::CompareCase::INSENSITIVE_ASCII);
|
| }
|
|
|
| bool IsPropagatingPasswordChangesToWebCredentialsEnabled(
|
|
|