| 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 98c9099f6399bc3d9c638c4ce2d56e37f931b664..bd4bc5b2e8504b018cda2994bafab8fe7fed3151 100644
|
| --- a/components/password_manager/core/browser/affiliation_utils.cc
|
| +++ b/components/password_manager/core/browser/affiliation_utils.cc
|
| @@ -43,7 +43,7 @@ base::StringPiece ComponentString(const std::string& uri,
|
| bool ContainsOnlyAlphanumericAnd(const base::StringPiece& input,
|
| const base::StringPiece& other_characters) {
|
| for (char c : input) {
|
| - if (!IsAsciiAlpha(c) && !IsAsciiDigit(c) &&
|
| + if (!base::IsAsciiAlpha(c) && !base::IsAsciiDigit(c) &&
|
| other_characters.find(c) == base::StringPiece::npos)
|
| return false;
|
| }
|
|
|