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

Unified Diff: components/webauth/authenticator_impl.h

Issue 2788823002: Add the Mojo implementation of authenticator.mojom's MakeCredential. (Closed)
Patch Set: Removed dispose method Created 3 years, 8 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: components/webauth/authenticator_impl.h
diff --git a/components/webauth/authenticator_impl.h b/components/webauth/authenticator_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..35bf80de3f00c3801ea549bc416e7e4ddebf60bf
--- /dev/null
+++ b/components/webauth/authenticator_impl.h
@@ -0,0 +1,64 @@
+// Copyright 2017 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.
+
+#ifndef COMPONENTS_WEBAUTH_AUTHENTICATOR_IMPL_H_
+#define COMPONENTS_WEBAUTH_AUTHENTICATOR_IMPL_H_
+
+#include <vector>
+
+#include "base/macros.h"
+#include "components/webauth/authenticator.mojom.h"
+#include "content/public/browser/web_contents.h"
+#include "mojo/public/cpp/bindings/binding.h"
+#include "mojo/public/cpp/bindings/interface_request.h"
+
+namespace content {
+class RenderFrameHost;
+}
+
+namespace webauth {
+
+// Implementation of the public Authenticator interface.
+class AuthenticatorImpl : public mojom::Authenticator {
+ public:
+ static void Create(content::RenderFrameHost* render_frame_host,
+ mojo::InterfaceRequest<mojom::Authenticator> request);
+ AuthenticatorImpl(content::RenderFrameHost* render_frame_host);
jochen (gone - plz use gerrit) 2017/04/25 15:08:26 nit. explicit. should this ctor be private?
kpaulhamus 2017/05/11 20:09:56 Done.
+ ~AuthenticatorImpl() override;
+
+ void set_connection_error_handler(const base::Closure& error_handler) {
+ connection_error_handler_ = error_handler;
+ }
+
+ private:
+ // mojom:Authenticator
+ void MakeCredential(
+ mojom::RelyingPartyAccountPtr account,
+ std::vector<mojom::ScopedCredentialParametersPtr> parameters,
+ const std::vector<uint8_t>& challenge,
+ mojom::ScopedCredentialOptionsPtr options,
+ const MakeCredentialCallback& callback) override;
+
+ // Callback to handle the async response from a U2fDevice.
+ void OnRegister(const MakeCredentialCallback& callback,
+ std::string& clientDataJSON,
+ uint8_t status_code,
+ std::vector<uint8_t> data);
+
+ void onTimeout(const MakeCredentialCallback& callback);
+
+ // As a result of a browser-side error or renderer-initiated mojo channel
+ // closure (e.g. there was an error on the renderer side, or payment was
+ // successful), this method is called. It is responsible for cleaning up.
+ void OnConnectionTerminated();
+
+ base::Closure connection_error_handler_;
+ base::CancelableClosure timeout_callback_;
+ url::Origin callerOrigin_;
+ DISALLOW_COPY_AND_ASSIGN(AuthenticatorImpl);
+};
+
+} // namespace webauth
+
+#endif // COMPONENTS_WEBAUTH_AUTHENTICATOR_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698