Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / credentialmanager / LocalCredential.h
index 694c3a0..387e5e2 100644 (file)
 
 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);
 };