| Index: Source/platform/credentialmanager/PlatformPasswordCredential.cpp
|
| diff --git a/Source/platform/credentialmanager/PlatformPasswordCredential.cpp b/Source/platform/credentialmanager/PlatformPasswordCredential.cpp
|
| index 3c7a2fe6a0495192733b09b9df83262a02577f59..522d666def209183fb9836617edec9c6ea4c0e1b 100644
|
| --- a/Source/platform/credentialmanager/PlatformPasswordCredential.cpp
|
| +++ b/Source/platform/credentialmanager/PlatformPasswordCredential.cpp
|
| @@ -7,13 +7,13 @@
|
|
|
| namespace blink {
|
|
|
| -PlatformPasswordCredential* PlatformPasswordCredential::create(const String& id, const String& password, const String& name, const KURL& avatarURL)
|
| +PlatformPasswordCredential* PlatformPasswordCredential::create(const String& id, const String& password, const String& name, const KURL& iconURL)
|
| {
|
| - return new PlatformPasswordCredential(id, password, name, avatarURL);
|
| + return new PlatformPasswordCredential(id, password, name, iconURL);
|
| }
|
|
|
| -PlatformPasswordCredential::PlatformPasswordCredential(const String& id, const String& password, const String& name, const KURL& avatarURL)
|
| - : PlatformCredential(id, name, avatarURL)
|
| +PlatformPasswordCredential::PlatformPasswordCredential(const String& id, const String& password, const String& name, const KURL& iconURL)
|
| + : PlatformCredential(id, name, iconURL)
|
| , m_password(password)
|
| {
|
| setType("password");
|
|
|