| Index: Source/platform/credentialmanager/PlatformLocalCredential.cpp
|
| diff --git a/Source/platform/credentialmanager/PlatformLocalCredential.cpp b/Source/platform/credentialmanager/PlatformLocalCredential.cpp
|
| index 90a93aec76cb639ab83a4e95bdb081fe2871d1a3..207b57ececb5f1bd2cc7b8a4b6032cf06400aa69 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 KURL& avatarURL, const String& password)
|
| +PlatformLocalCredential* PlatformLocalCredential::create(const String& id, const String& password, const String& name, const KURL& avatarURL)
|
| {
|
| - return new PlatformLocalCredential(id, name, avatarURL, password);
|
| + return new PlatformLocalCredential(id, password, name, avatarURL);
|
| }
|
|
|
| -PlatformLocalCredential::PlatformLocalCredential(const String& id, const String& name, const KURL& avatarURL, const String& password)
|
| +PlatformLocalCredential::PlatformLocalCredential(const String& id, const String& password, const String& name, const KURL& avatarURL)
|
| : PlatformCredential(id, name, avatarURL)
|
| , m_password(password)
|
| {
|
|
|