| Index: Source/modules/credentialmanager/LocalCredential.h
|
| diff --git a/Source/modules/credentialmanager/LocalCredential.h b/Source/modules/credentialmanager/LocalCredential.h
|
| index 737dd94638f0d0a9b323e98ef998953deb86fc73..387e5e279e14b0607234be05645af04c5554d92c 100644
|
| --- a/Source/modules/credentialmanager/LocalCredential.h
|
| +++ b/Source/modules/credentialmanager/LocalCredential.h
|
| @@ -13,15 +13,19 @@
|
|
|
| namespace blink {
|
|
|
| +class WebLocalCredential;
|
| +
|
| class LocalCredential FINAL : public Credential {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| + static LocalCredential* create(WebLocalCredential*);
|
| static LocalCredential* create(const String& id, const String& name, const String& avatar, const String& password, ExceptionState&);
|
|
|
| // LocalCredential.idl
|
| const String& password() const;
|
|
|
| private:
|
| + LocalCredential(WebLocalCredential*);
|
| LocalCredential(const String& id, const String& name, const KURL& avatar, const String& password);
|
| };
|
|
|
|
|