summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/credentialmanager/authenticator_attestation_response.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/credentialmanager/authenticator_attestation_response.h')
-rw-r--r--chromium/third_party/blink/renderer/modules/credentialmanager/authenticator_attestation_response.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/chromium/third_party/blink/renderer/modules/credentialmanager/authenticator_attestation_response.h b/chromium/third_party/blink/renderer/modules/credentialmanager/authenticator_attestation_response.h
index c0ffb0cb22d..98309d29d56 100644
--- a/chromium/third_party/blink/renderer/modules/credentialmanager/authenticator_attestation_response.h
+++ b/chromium/third_party/blink/renderer/modules/credentialmanager/authenticator_attestation_response.h
@@ -25,6 +25,10 @@ class MODULES_EXPORT AuthenticatorAttestationResponse final
DOMArrayBuffer* attestation_object,
Vector<mojom::AuthenticatorTransport> transports);
+ AuthenticatorAttestationResponse(
+ DOMArrayBuffer* client_data_json,
+ DOMArrayBuffer* attestation_object,
+ Vector<mojom::AuthenticatorTransport> transports);
~AuthenticatorAttestationResponse() override;
DOMArrayBuffer* attestationObject() const {
@@ -36,11 +40,6 @@ class MODULES_EXPORT AuthenticatorAttestationResponse final
void Trace(blink::Visitor*) override;
private:
- AuthenticatorAttestationResponse(
- DOMArrayBuffer* client_data_json,
- DOMArrayBuffer* attestation_object,
- Vector<mojom::AuthenticatorTransport> transports);
-
const Member<DOMArrayBuffer> attestation_object_;
const Vector<mojom::AuthenticatorTransport> transports_;
};