Index: third_party/WebKit/Source/modules/webauth/AuthenticatorAttestationResponse.idl |
diff --git a/third_party/WebKit/Source/modules/webauth/AuthenticatorAttestationResponse.idl b/third_party/WebKit/Source/modules/webauth/AuthenticatorAttestationResponse.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..56149f914bfc95a221a2a38af9863966e36b9676 |
--- /dev/null |
+++ b/third_party/WebKit/Source/modules/webauth/AuthenticatorAttestationResponse.idl |
@@ -0,0 +1,12 @@ |
+// 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. |
+ |
+// https://w3c.github.io/webauthn/#authenticatorattestationresponse |
+ |
+[ |
+ RuntimeEnabled=WebAuth, |
+ SecureContext |
+] interface AuthenticatorAttestationResponse : AuthenticatorResponse { |
+ readonly attribute ArrayBuffer attestationObject; |
Mike West
2017/06/30 08:06:35
[SameObject]
kpaulhamus
2017/06/30 10:59:39
Done.
|
+}; |