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

Unified Diff: Source/platform/exported/WebCredential.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.cpp ('k') | public/platform/WebCredential.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebCredential.cpp
diff --git a/Source/platform/exported/WebCredential.cpp b/Source/platform/exported/WebCredential.cpp
index 2289b751005024a21fbfdd97bfaa5228fa4fd707..192e8af9f9fdd3908eb68bc0a688461fb21f98e7 100644
--- a/Source/platform/exported/WebCredential.cpp
+++ b/Source/platform/exported/WebCredential.cpp
@@ -27,8 +27,8 @@ WebCredential WebCredential::create(PlatformCredential* credential)
return WebCredential(credential);
}
-WebCredential::WebCredential(const WebString& id, const WebString& name, const WebURL& avatarURL)
- : m_platformCredential(PlatformCredential::create(id, name, avatarURL))
+WebCredential::WebCredential(const WebString& id, const WebString& name, const WebURL& iconURL)
+ : m_platformCredential(PlatformCredential::create(id, name, iconURL))
{
}
@@ -68,9 +68,9 @@ WebString WebCredential::name() const
return m_platformCredential->name();
}
-WebURL WebCredential::avatarURL() const
+WebURL WebCredential::iconURL() const
{
- return m_platformCredential->avatarURL();
+ return m_platformCredential->iconURL();
}
WebString WebCredential::type() const
« no previous file with comments | « Source/platform/credentialmanager/PlatformCredential.cpp ('k') | public/platform/WebCredential.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698