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

Unified Diff: components/password_manager/core/browser/password_manager_test_utils.cc

Issue 1220713005: Rename avatar_url to icon_url in PasswordForm. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rename2
Patch Set: Rebased. Created 5 years, 5 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/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();
}

Powered by Google App Engine
This is Rietveld 408576698