| Index: Source/modules/credentialmanager/LocalCredential.cpp
|
| diff --git a/Source/modules/credentialmanager/LocalCredential.cpp b/Source/modules/credentialmanager/LocalCredential.cpp
|
| index 7b61e4b98a09a07475a3eb54afdca18be6176857..92430b5b559a96c8194f22e771decd2957272855 100644
|
| --- a/Source/modules/credentialmanager/LocalCredential.cpp
|
| +++ b/Source/modules/credentialmanager/LocalCredential.cpp
|
| @@ -10,6 +10,11 @@
|
|
|
| namespace blink {
|
|
|
| +LocalCredential* LocalCredential::create(const String& id, const String& name, const KURL& avatar, const String& password)
|
| +{
|
| + return new LocalCredential(id, name, avatar, password);
|
| +}
|
| +
|
| LocalCredential* LocalCredential::create(const String& id, const String& name, const String& avatar, const String& password, ExceptionState& exceptionState)
|
| {
|
| KURL avatarURL = parseStringAsURL(avatar, exceptionState);
|
|
|