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

Unified Diff: Source/platform/exported/WebPasswordCredential.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/exported/WebPasswordCredential.cpp
diff --git a/Source/platform/exported/WebPasswordCredential.cpp b/Source/platform/exported/WebPasswordCredential.cpp
index b78868053d031804c049aeabdd8be994ef7a7fff..10309154e2ff409bf3477686dca9424e4408f94a 100644
--- a/Source/platform/exported/WebPasswordCredential.cpp
+++ b/Source/platform/exported/WebPasswordCredential.cpp
@@ -8,8 +8,8 @@
#include "platform/credentialmanager/PlatformPasswordCredential.h"
namespace blink {
-WebPasswordCredential::WebPasswordCredential(const WebString& id, const WebString& password, const WebString& name, const WebURL& avatarURL)
- : WebCredential(PlatformPasswordCredential::create(id, password, name, avatarURL))
+WebPasswordCredential::WebPasswordCredential(const WebString& id, const WebString& password, const WebString& name, const WebURL& iconURL)
+ : WebCredential(PlatformPasswordCredential::create(id, password, name, iconURL))
{
}

Powered by Google App Engine
This is Rietveld 408576698