X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2Fpublic%2Fplatform%2FWebLocalCredential.h;h=89bdc351d0cf35e8c5c0b69afe63ba689b25bb1b;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=0ce73a6d2dd16dff8762b1edd79d81146d8099a1;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/public/platform/WebLocalCredential.h b/src/third_party/WebKit/public/platform/WebLocalCredential.h index 0ce73a6..89bdc35 100644 --- a/src/third_party/WebKit/public/platform/WebLocalCredential.h +++ b/src/third_party/WebKit/public/platform/WebLocalCredential.h @@ -12,13 +12,23 @@ namespace blink { +class PlatformLocalCredential; + class WebLocalCredential : public WebCredential { public: + BLINK_PLATFORM_EXPORT WebLocalCredential(const WebString& id, const WebString& password, const WebString& name, const WebURL& avatarURL); + + // FIXME: Throw this away once it's unused on the Chromium side. BLINK_PLATFORM_EXPORT WebLocalCredential(const WebString& id, const WebString& name, const WebURL& avatarURL, const WebString& password); BLINK_PLATFORM_EXPORT void assign(const WebLocalCredential&); BLINK_PLATFORM_EXPORT WebString password() const; + +#if INSIDE_BLINK + BLINK_PLATFORM_EXPORT WebLocalCredential(PlatformCredential*); + BLINK_PLATFORM_EXPORT WebLocalCredential& operator=(PlatformCredential*); +#endif }; } // namespace blink