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

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

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
Index: Source/platform/credentialmanager/PlatformCredential.h
diff --git a/Source/platform/credentialmanager/PlatformCredential.h b/Source/platform/credentialmanager/PlatformCredential.h
index c39a026188f0f9f195e41fb3a7c500fa354bf72b..3120fc53a38b55003638e3038a2afb76b367df4a 100644
--- a/Source/platform/credentialmanager/PlatformCredential.h
+++ b/Source/platform/credentialmanager/PlatformCredential.h
@@ -14,12 +14,12 @@ namespace blink {
class PLATFORM_EXPORT PlatformCredential : public GarbageCollectedFinalized<PlatformCredential> {
WTF_MAKE_NONCOPYABLE(PlatformCredential);
public:
- static PlatformCredential* create(const String& id, const String& name, const KURL& avatarURL);
+ static PlatformCredential* create(const String& id, const String& name, const KURL& iconURL);
virtual ~PlatformCredential();
const String& id() const { return m_id; }
const String& name() const { return m_name; }
- const KURL& avatarURL() const { return m_avatarURL; }
+ const KURL& iconURL() const { return m_iconURL; }
const String& type() const { return m_type; }
virtual bool isPassword() { return false; }
@@ -28,14 +28,14 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE() { }
protected:
- PlatformCredential(const String& id, const String& name, const KURL& avatarURL);
+ PlatformCredential(const String& id, const String& name, const KURL& iconURL);
void setType(const String& type) { m_type = type; }
private:
String m_id;
String m_name;
- KURL m_avatarURL;
+ KURL m_iconURL;
String m_type;
};
« no previous file with comments | « Source/modules/credentialmanager/Credential.idl ('k') | Source/platform/credentialmanager/PlatformCredential.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698