Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1464)

Unified Diff: public/platform/WebCredential.h

Issue 573663002: Credential Manager: Wire up the client. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Oops. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: public/platform/WebCredential.h
diff --git a/public/platform/WebCredential.h b/public/platform/WebCredential.h
index fcefa4c92c865cc3bed0300906be971bf1b74a3a..3b0b83ed83b57fed9be7bbb2e9daafbd4ff26746 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;
-protected:
+#if INSIDE_BLINK
BLINK_PLATFORM_EXPORT explicit WebCredential(PlatformCredential*);
+ BLINK_PLATFORM_EXPORT WebCredential& operator=(PlatformCredential*);
tkent 2014/09/16 00:02:18 nit: |explicit WebCredential()| above and this ope
+ BLINK_PLATFORM_EXPORT operator PlatformCredential*() const;
+#endif
+
+protected:
WebPrivatePtr<PlatformCredential> m_platformCredential;
};

Powered by Google App Engine
This is Rietveld 408576698