Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Unified Diff: third_party/WebKit/LayoutTests/webauth/idl.html

Issue 2702653002: Patch #1 of multiple. Add webauth .mojom and initial usage of makeCredential. (Closed)
Patch Set: Rebaselining layout tests and fixes nits Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 (
Account accountInformation,
sequence < ScopedCredentialParameters > cryptoParameters,
BufferSource attestationChallenge,
optional ScopedCredentialOptions options
);
- Promise < AuthenticationAssertion > getAssertion (
+ Promise <AuthenticationAssertion> GetAssertion (
BufferSource assertionChallenge,
optional AssertionOptions options
);

Powered by Google App Engine
This is Rietveld 408576698