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

Unified Diff: Source/modules/credentialmanager/PasswordCredential.h

Issue 1209953002: Rename avatarURL to iconURL in the credential manager in Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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: Source/modules/credentialmanager/PasswordCredential.h
diff --git a/Source/modules/credentialmanager/PasswordCredential.h b/Source/modules/credentialmanager/PasswordCredential.h
index a7e8b478a4607a5ff797e73f02a69702550365f3..304fb841f5b795c0cf9c561c59a224a7ac480fa4 100644
--- a/Source/modules/credentialmanager/PasswordCredential.h
+++ b/Source/modules/credentialmanager/PasswordCredential.h
@@ -29,7 +29,7 @@ public:
return create(id, password, name, emptyString(), exceptionState);
}
- static PasswordCredential* create(const String& id, const String& password, const String& name, const String& avatar, ExceptionState&);
+ static PasswordCredential* create(const String& id, const String& password, const String& name, const String& icon, ExceptionState&);
static PasswordCredential* create(WebPasswordCredential*);
// PasswordCredential.idl
@@ -40,7 +40,7 @@ public:
private:
PasswordCredential(WebPasswordCredential*);
- PasswordCredential(const String& id, const String& password, const String& name, const KURL& avatar);
+ PasswordCredential(const String& id, const String& password, const String& name, const KURL& icon);
Member<DOMFormData> m_formData;
};

Powered by Google App Engine
This is Rietveld 408576698