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

Unified Diff: Source/platform/credentialmanager/PlatformPasswordCredential.cpp

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/platform/credentialmanager/PlatformPasswordCredential.cpp
diff --git a/Source/platform/credentialmanager/PlatformPasswordCredential.cpp b/Source/platform/credentialmanager/PlatformPasswordCredential.cpp
index 3c7a2fe6a0495192733b09b9df83262a02577f59..522d666def209183fb9836617edec9c6ea4c0e1b 100644
--- a/Source/platform/credentialmanager/PlatformPasswordCredential.cpp
+++ b/Source/platform/credentialmanager/PlatformPasswordCredential.cpp
@@ -7,13 +7,13 @@
namespace blink {
-PlatformPasswordCredential* PlatformPasswordCredential::create(const String& id, const String& password, const String& name, const KURL& avatarURL)
+PlatformPasswordCredential* PlatformPasswordCredential::create(const String& id, const String& password, const String& name, const KURL& iconURL)
{
- return new PlatformPasswordCredential(id, password, name, avatarURL);
+ return new PlatformPasswordCredential(id, password, name, iconURL);
}
-PlatformPasswordCredential::PlatformPasswordCredential(const String& id, const String& password, const String& name, const KURL& avatarURL)
- : PlatformCredential(id, name, avatarURL)
+PlatformPasswordCredential::PlatformPasswordCredential(const String& id, const String& password, const String& name, const KURL& iconURL)
+ : PlatformCredential(id, name, iconURL)
, m_password(password)
{
setType("password");

Powered by Google App Engine
This is Rietveld 408576698