| Index: components/autofill/content/browser/wallet/wallet_service_url.cc
|
| diff --git a/components/autofill/content/browser/wallet/wallet_service_url.cc b/components/autofill/content/browser/wallet/wallet_service_url.cc
|
| index 3b0c2d5f7c1936ec874cc6c57938c66ca6ef54d4..e032ed3e29607ea1d1a0fa734a7b5835c593885e 100644
|
| --- a/components/autofill/content/browser/wallet/wallet_service_url.cc
|
| +++ b/components/autofill/content/browser/wallet/wallet_service_url.cc
|
| @@ -207,9 +207,8 @@ bool IsSignInContinueUrl(const GURL& url, size_t* user_index) {
|
| bool IsSignInRelatedUrl(const GURL& url) {
|
| size_t unused;
|
| return url.GetOrigin() == GetAddAccountUrl().GetOrigin() ||
|
| - StartsWith(base::UTF8ToUTF16(url.GetOrigin().host()),
|
| - base::ASCIIToUTF16("accounts."),
|
| - false) ||
|
| + base::StartsWith(base::UTF8ToUTF16(url.GetOrigin().host()),
|
| + base::ASCIIToUTF16("accounts."), false) ||
|
| IsSignInContinueUrl(url, &unused);
|
| }
|
|
|
|
|