| Index: Source/modules/credentialmanager/LocalCredential.h
|
| diff --git a/Source/modules/credentialmanager/LocalCredential.h b/Source/modules/credentialmanager/LocalCredential.h
|
| index 42cf5abbaa67e75bc686ad32c6bb9e27df174c6a..694c3a0dd6c15bd4026818d7ba3563309ba1b8bb 100644
|
| --- a/Source/modules/credentialmanager/LocalCredential.h
|
| +++ b/Source/modules/credentialmanager/LocalCredential.h
|
| @@ -9,18 +9,19 @@
|
| #include "bindings/core/v8/SerializedScriptValue.h"
|
| #include "modules/credentialmanager/Credential.h"
|
| #include "platform/heap/Handle.h"
|
| +#include "platform/weborigin/KURL.h"
|
|
|
| namespace blink {
|
|
|
| class LocalCredential FINAL : public Credential {
|
| public:
|
| - static LocalCredential* create(const String& id, const String& name, const String& avatarURL, const String& password);
|
| + static LocalCredential* create(const String& id, const String& name, const String& avatar, const String& password, ExceptionState&);
|
|
|
| // LocalCredential.idl
|
| const String& password() const;
|
|
|
| private:
|
| - LocalCredential(const String& id, const String& name, const String& avatarURL, const String& password);
|
| + LocalCredential(const String& id, const String& name, const KURL& avatar, const String& password);
|
| };
|
|
|
| } // namespace blink
|
|
|