| Index: Source/platform/credentialmanager/PlatformLocalCredential.cpp
|
| diff --git a/Source/platform/credentialmanager/PlatformLocalCredential.cpp b/Source/platform/credentialmanager/PlatformLocalCredential.cpp
|
| index 8f99cef9482557d61120c14214887fc0516aa856..90a93aec76cb639ab83a4e95bdb081fe2871d1a3 100644
|
| --- a/Source/platform/credentialmanager/PlatformLocalCredential.cpp
|
| +++ b/Source/platform/credentialmanager/PlatformLocalCredential.cpp
|
| @@ -7,12 +7,12 @@
|
|
|
| namespace blink {
|
|
|
| -PlatformLocalCredential* PlatformLocalCredential::create(const String& id, const String& name, const String& avatarURL, const String& password)
|
| +PlatformLocalCredential* PlatformLocalCredential::create(const String& id, const String& name, const KURL& avatarURL, const String& password)
|
| {
|
| return new PlatformLocalCredential(id, name, avatarURL, password);
|
| }
|
|
|
| -PlatformLocalCredential::PlatformLocalCredential(const String& id, const String& name, const String& avatarURL, const String& password)
|
| +PlatformLocalCredential::PlatformLocalCredential(const String& id, const String& name, const KURL& avatarURL, const String& password)
|
| : PlatformCredential(id, name, avatarURL)
|
| , m_password(password)
|
| {
|
|
|