Index: third_party/WebKit/Source/modules/webauth/AuthenticatorAssertionResponse.h |
diff --git a/third_party/WebKit/Source/modules/webauth/AuthenticatorAssertionResponse.h b/third_party/WebKit/Source/modules/webauth/AuthenticatorAssertionResponse.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ff355fb3b378a51f38d4b2ce99eee8a301693f36 |
--- /dev/null |
+++ b/third_party/WebKit/Source/modules/webauth/AuthenticatorAssertionResponse.h |
@@ -0,0 +1,45 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
engedy
2017/07/13 11:33:54
nit: Let's make this 2017 at least for `actual` ne
kpaulhamus
2017/07/13 16:00:53
Done.
|
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef AuthenticatorAssertionResponse_h |
+#define AuthenticatorAssertionResponse_h |
+ |
+#include "core/dom/DOMArrayBuffer.h" |
+#include "modules/ModulesExport.h" |
+#include "modules/webauth/AuthenticatorResponse.h" |
+#include "platform/bindings/ScriptWrappable.h" |
+ |
+namespace blink { |
+ |
+class MODULES_EXPORT AuthenticatorAssertionResponse final |
+ : public AuthenticatorResponse { |
+ DEFINE_WRAPPERTYPEINFO(); |
+ |
+ public: |
+ static AuthenticatorAssertionResponse* Create( |
+ DOMArrayBuffer* client_data_json, |
+ DOMArrayBuffer* authenticator_data, |
+ DOMArrayBuffer* signature); |
+ |
+ virtual ~AuthenticatorAssertionResponse(); |
+ |
+ DOMArrayBuffer* authenticatorData() const { |
+ return authenticator_data_.Get(); |
+ } |
+ |
+ DOMArrayBuffer* signature() const { return signature_.Get(); } |
+ |
+ DECLARE_VIRTUAL_TRACE(); |
+ |
+ private: |
+ explicit AuthenticatorAssertionResponse(DOMArrayBuffer* client_data_json, |
+ DOMArrayBuffer* authenticator_data, |
+ DOMArrayBuffer* signature); |
+ const Member<DOMArrayBuffer> authenticator_data_; |
+ const Member<DOMArrayBuffer> signature_; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // AuthenticatorAssertionResponse_h |