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

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: Null check. 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
« no previous file with comments | « Source/platform/exported/WebCredential.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « Source/platform/exported/WebCredential.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698