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

Unified Diff: Source/modules/credentialmanager/CredentialManagerClient.cpp

Issue 488993003: Credential Manager: Migrate to WebView client-based approach. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: feedback. Created 6 years, 4 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: Source/modules/credentialmanager/CredentialManagerClient.cpp
diff --git a/Source/modules/credentialmanager/CredentialManagerClient.cpp b/Source/modules/credentialmanager/CredentialManagerClient.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..76a99b08eb16ebb9ea47b126f88634ba6dae4bab
--- /dev/null
+++ b/Source/modules/credentialmanager/CredentialManagerClient.cpp
@@ -0,0 +1,66 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "config.h"
+#include "modules/credentialmanager/CredentialManagerClient.h"
+
+#include "core/page/Page.h"
+
+namespace blink {
+
+CredentialManagerClient::CredentialManagerClient(WebCredentialManagerClient* client)
+ : m_client(client)
+{
+}
+
+CredentialManagerClient::~CredentialManagerClient()
+{
+}
+
+// static
+const char* CredentialManagerClient::supplementName()
+{
+ return "CredentialManagerClient";
+}
+
+// static
+CredentialManagerClient* CredentialManagerClient::from(Page* page)
+{
+ return static_cast<CredentialManagerClient*>(WillBeHeapSupplement<Page>::from(page, supplementName()));
+}
+
+void provideCredentialManagerClientTo(Page& page, CredentialManagerClient* client)
+{
+ CredentialManagerClient::provideTo(page, CredentialManagerClient::supplementName(), adoptPtrWillBeNoop(client));
+}
+
+void CredentialManagerClient::dispatchFailedSignIn(const WebCredential& credential, WebCredentialManagerClient::NotificationCallbacks* callbacks)
+{
+ if (!m_client)
+ return;
+ m_client->dispatchFailedSignIn(credential, callbacks);
+}
+
+void CredentialManagerClient::dispatchSignedIn(const WebCredential& credential, WebCredentialManagerClient::NotificationCallbacks* callbacks)
+{
+ if (!m_client)
+ return;
+ m_client->dispatchSignedIn(credential, callbacks);
+}
+
+void CredentialManagerClient::dispatchSignedOut(WebCredentialManagerClient::NotificationCallbacks* callbacks)
+{
+ if (!m_client)
+ return;
+ m_client->dispatchSignedOut(callbacks);
+}
+
+void CredentialManagerClient::dispatchRequest(bool zeroClickOnly, const WebVector<WebURL>& federations, WebCredentialManagerClient::RequestCallbacks* callbacks)
+{
+ if (!m_client)
+ return;
+ m_client->dispatchRequest(zeroClickOnly, federations, callbacks);
+}
+
+} // namespace blink
« no previous file with comments | « Source/modules/credentialmanager/CredentialManagerClient.h ('k') | Source/modules/credentialmanager/CredentialsContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698