| 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;
|
| };
|
|
|
|
|