| Index: Source/modules/credentialmanager/Credential.h
|
| diff --git a/Source/modules/credentialmanager/Credential.h b/Source/modules/credentialmanager/Credential.h
|
| index 7fdacc7688432c385a5668cbce983736320b56ec..96412846379ab73fe966491d15de7e89dac7cd59 100644
|
| --- a/Source/modules/credentialmanager/Credential.h
|
| +++ b/Source/modules/credentialmanager/Credential.h
|
| @@ -18,12 +18,12 @@ class Credential : public GarbageCollected<Credential>, public ScriptWrappable {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static Credential* create(const String& id, const String& name, const KURL& avatar);
|
| - static Credential* create(const String& id, const String& name, const String& avatar, ExceptionState&);
|
| + static Credential* create(const String& id, const String& name, const String& icon, ExceptionState&);
|
|
|
| // Credential.idl
|
| const String& id() const { return m_platformCredential->id(); }
|
| const String& name() const { return m_platformCredential->name(); }
|
| - const KURL& avatarURL() const { return m_platformCredential->avatarURL(); }
|
| + const KURL& iconURL() const { return m_platformCredential->iconURL(); }
|
| const String& type() const { return m_platformCredential->type(); }
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
| @@ -32,7 +32,7 @@ public:
|
|
|
| protected:
|
| Credential(PlatformCredential*);
|
| - Credential(const String& id, const String& name, const KURL& avatar);
|
| + Credential(const String& id, const String& name, const KURL& icon);
|
|
|
| // Parses a string as a KURL. Throws an exception via |exceptionState| if an invalid URL is produced.
|
| static KURL parseStringAsURL(const String&, ExceptionState&);
|
|
|