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

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

Issue 1165673005: Credential Manager: Rename 'avatarURL' to 'iconURL'. (1/3 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@remove-local
Patch Set: Created 5 years, 7 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
« no previous file with comments | « Source/platform/credentialmanager/PlatformCredential.h ('k') | Source/platform/exported/WebCredential.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/credentialmanager/PlatformCredential.cpp
diff --git a/Source/platform/credentialmanager/PlatformCredential.cpp b/Source/platform/credentialmanager/PlatformCredential.cpp
index f77916b43e6c9576ab66718135a003dc3166556f..3e7bfcb42af5e92f4f0bbe704cc096761ef4c3b3 100644
--- a/Source/platform/credentialmanager/PlatformCredential.cpp
+++ b/Source/platform/credentialmanager/PlatformCredential.cpp
@@ -7,15 +7,15 @@
namespace blink {
-PlatformCredential* PlatformCredential::create(const String& id, const String& name, const KURL& avatarURL)
+PlatformCredential* PlatformCredential::create(const String& id, const String& name, const KURL& iconURL)
{
- return new PlatformCredential(id, name, avatarURL);
+ return new PlatformCredential(id, name, iconURL);
}
-PlatformCredential::PlatformCredential(const String& id, const String& name, const KURL& avatarURL)
+PlatformCredential::PlatformCredential(const String& id, const String& name, const KURL& iconURL)
: m_id(id)
, m_name(name)
- , m_avatarURL(avatarURL)
+ , m_iconURL(iconURL)
, m_type("credential")
{
}
« no previous file with comments | « Source/platform/credentialmanager/PlatformCredential.h ('k') | Source/platform/exported/WebCredential.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698