| Index: components/password_manager/core/browser/password_manager_test_utils.cc
|
| diff --git a/components/password_manager/core/browser/password_manager_test_utils.cc b/components/password_manager/core/browser/password_manager_test_utils.cc
|
| index 74da854115cc087ead90b2b0b0530591073aa2d1..9613d23b87b765280e9449d2c57451f36bc91a5d 100644
|
| --- a/components/password_manager/core/browser/password_manager_test_utils.cc
|
| +++ b/components/password_manager/core/browser/password_manager_test_utils.cc
|
| @@ -14,7 +14,7 @@ using autofill::PasswordForm;
|
|
|
| namespace password_manager {
|
|
|
| -const char kTestingAvatarUrlSpec[] = "https://accounts.google.com/Avatar";
|
| +const char kTestingIconUrlSpec[] = "https://accounts.google.com/Icon";
|
| const char kTestingFederationUrlSpec[] = "https://accounts.google.com/login";
|
| const int kTestingDaysAfterPasswordsAreSynced = 1;
|
| const wchar_t kTestingFederatedLoginMarker[] = L"__federated__";
|
| @@ -54,7 +54,7 @@ scoped_ptr<PasswordForm> CreatePasswordFormFromDataForTesting(
|
| } else {
|
| form->blacklisted_by_user = true;
|
| }
|
| - form->avatar_url = GURL(kTestingAvatarUrlSpec);
|
| + form->icon_url = GURL(kTestingIconUrlSpec);
|
| return form.Pass();
|
| }
|
|
|
|
|