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

Side by Side Diff: third_party/WebKit/Source/modules/webauth/WebAuthentication.cpp

Issue 2533863002: Add WebAuthn bindings and client interface. (Closed)
Patch Set: Layout test expected file tweaks Created 3 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "modules/webauth/WebAuthentication.h"
6
7 #include "bindings/core/v8/ScriptPromise.h"
8
9 namespace blink {
10
11 WebAuthentication::WebAuthentication(LocalFrame& frame) {}
12
13 WebAuthentication::~WebAuthentication() {}
14
15 void WebAuthentication::dispose() {}
16
17 ScriptPromise WebAuthentication::makeCredential(
18 ScriptState* scriptState,
19 const RelyingPartyAccount& accountInformation,
20 const HeapVector<ScopedCredentialParameters> cryptoParameters,
21 const BufferSource& attestationChallenge,
22 ScopedCredentialOptions& options) {
23 NOTREACHED();
24 return ScriptPromise();
25 }
26
27 ScriptPromise WebAuthentication::getAssertion(
28 ScriptState* scriptState,
29 const BufferSource& assertionChallenge,
30 const AuthenticationAssertionOptions& options) {
31 NOTREACHED();
32 return ScriptPromise();
33 }
34
35 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698