OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef AuthenticatorAttestationResponse_h | |
6 #define AuthenticatorAttestationResponse_h | |
7 | |
8 #include "core/dom/DOMArrayBuffer.h" | |
9 #include "modules/webauth/AuthenticatorResponse.h" | |
10 #include "platform/bindings/ScriptWrappable.h" | |
11 | |
12 namespace blink { | |
13 | |
14 class AuthenticatorAttestationResponse final : public AuthenticatorResponse { | |
15 DEFINE_WRAPPERTYPEINFO(); | |
16 | |
17 public: | |
18 static AuthenticatorAttestationResponse* Create( | |
19 DOMArrayBuffer* client_data_json, | |
20 DOMArrayBuffer* attestation_object) { | |
21 return new AuthenticatorAttestationResponse(client_data_json, | |
22 attestation_object); | |
23 } | |
24 | |
25 AuthenticatorAttestationResponse(DOMArrayBuffer* client_data_json, | |
26 DOMArrayBuffer* attestation_object) | |
27 : AuthenticatorResponse(client_data_json), | |
28 attestation_object_(attestation_object) {} | |
Mike West
2017/06/30 08:06:35
Should this constructor be private?
kpaulhamus
2017/06/30 10:59:39
Done.
| |
29 | |
30 virtual ~AuthenticatorAttestationResponse() {} | |
Mike West
2017/06/30 08:06:35
I don't think you need this, since you define an e
kpaulhamus
2017/06/30 10:59:39
Done.
| |
31 | |
32 DOMArrayBuffer* attestationObject() const { | |
33 return attestation_object_.Get(); | |
34 } | |
35 | |
36 DEFINE_INLINE_TRACE() { | |
37 AuthenticatorResponse::Trace(visitor); | |
38 visitor->Trace(attestation_object_); | |
39 } | |
40 | |
41 private: | |
42 const Member<DOMArrayBuffer> attestation_object_; | |
43 }; | |
44 | |
45 } // namespace blink | |
46 | |
47 #endif // AuthenticatorAttestationResponse_h | |
OLD | NEW |