Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/webauth/idl.html |
| diff --git a/third_party/WebKit/LayoutTests/webauth/idl.html b/third_party/WebKit/LayoutTests/webauth/idl.html |
| index 730d8cf039567e0e093a465e9f82f9d3b3188d86..f25391c01531c80c933d877185ab1814d5f34cf6 100644 |
| --- a/third_party/WebKit/LayoutTests/webauth/idl.html |
| +++ b/third_party/WebKit/LayoutTests/webauth/idl.html |
| @@ -69,7 +69,7 @@ interface ScopedCredential { |
| dictionary ScopedCredentialDescriptor { |
| required ScopedCredentialType type; |
| required BufferSource id; |
| - sequence < Transport > transports; |
| + sequence <Transport> transports; |
| }; |
| enum Transport { |
| @@ -79,14 +79,14 @@ enum Transport { |
| }; |
| [SecureContext] |
| interface WebAuthentication { |
| - Promise < ScopedCredentialInfo > makeCredential ( |
| + Promise <ScopedCredentialInfo> MakeCredential ( |
|
dcheng
2017/05/04 07:22:35
The webidl still should be makeCredential though.
kpaulhamus
2017/05/05 01:32:36
d'oh. Right. I'll undo the layouttest rebaselining
|
| Account accountInformation, |
| sequence < ScopedCredentialParameters > cryptoParameters, |
| BufferSource attestationChallenge, |
| optional ScopedCredentialOptions options |
| ); |
| - Promise < AuthenticationAssertion > getAssertion ( |
| + Promise <AuthenticationAssertion> GetAssertion ( |
| BufferSource assertionChallenge, |
| optional AssertionOptions options |
| ); |