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

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: Adding additional comments to mojom structs. Created 3 years, 8 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 (
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
);

Powered by Google App Engine
This is Rietveld 408576698