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

Unified Diff: Source/platform/exported/WebCredential.cpp

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/modules/credentialmanager/LocalCredential.cpp ('k') | public/platform/WebCredential.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebCredential.cpp
diff --git a/Source/platform/exported/WebCredential.cpp b/Source/platform/exported/WebCredential.cpp
index db6097c1d75ffb0324ce9f746d39dd0a15dce89d..7f01394a32b0675c463d6ac81869a7ed35bb50f5 100644
--- a/Source/platform/exported/WebCredential.cpp
+++ b/Source/platform/exported/WebCredential.cpp
@@ -24,6 +24,12 @@ WebCredential::WebCredential(PlatformCredential* credential)
{
}
+WebCredential& WebCredential::operator=(PlatformCredential* credential)
+{
+ m_platformCredential = credential;
+ return *this;
+}
+
void WebCredential::reset()
{
m_platformCredential.reset();
« no previous file with comments | « Source/modules/credentialmanager/LocalCredential.cpp ('k') | public/platform/WebCredential.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698