| Index: public/platform/WebCredential.h
|
| diff --git a/public/platform/WebCredential.h b/public/platform/WebCredential.h
|
| index fcefa4c92c865cc3bed0300906be971bf1b74a3a..f7c26c84515da5ed6db57b5850d00d0a643d569d 100644
|
| --- a/public/platform/WebCredential.h
|
| +++ b/public/platform/WebCredential.h
|
| @@ -26,8 +26,13 @@ public:
|
| BLINK_PLATFORM_EXPORT WebString name() const;
|
| BLINK_PLATFORM_EXPORT WebURL avatarURL() const;
|
|
|
| +#if INSIDE_BLINK
|
| + BLINK_PLATFORM_EXPORT WebCredential(PlatformCredential*);
|
| + BLINK_PLATFORM_EXPORT WebCredential& operator=(PlatformCredential*);
|
| + BLINK_PLATFORM_EXPORT PlatformCredential* platformCredential() const { return m_platformCredential.get(); }
|
| +#endif
|
| +
|
| protected:
|
| - BLINK_PLATFORM_EXPORT explicit WebCredential(PlatformCredential*);
|
| WebPrivatePtr<PlatformCredential> m_platformCredential;
|
| };
|
|
|
|
|