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

Unified Diff: chrome/browser/ui/android/infobars/account_chooser_infobar.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: chrome/browser/ui/android/infobars/account_chooser_infobar.cc
diff --git a/chrome/browser/ui/android/infobars/account_chooser_infobar.cc b/chrome/browser/ui/android/infobars/account_chooser_infobar.cc
index 758dfbba079aa2363e942508955bf04117a56f12..15546dc8f187a9fa5ba0077ecc6ccd6c5bb2be8b 100644
--- a/chrome/browser/ui/android/infobars/account_chooser_infobar.cc
+++ b/chrome/browser/ui/android/infobars/account_chooser_infobar.cc
@@ -78,10 +78,10 @@ void FetchAvatars(
int index,
net::URLRequestContextGetter* request_context) {
for (auto password_form : password_forms) {
- if (!password_form->avatar_url.is_valid())
+ if (!password_form->icon_url.is_valid())
continue;
// Fetcher deletes itself once fetching is finished.
- auto fetcher = new AvatarFetcherAndroid(password_form->avatar_url, index,
+ auto fetcher = new AvatarFetcherAndroid(password_form->icon_url, index,
java_infobar);
fetcher->Start(request_context);
++index;

Powered by Google App Engine
This is Rietveld 408576698