blob: c0967ea44edc33bbabddc0324ee0701bc9a79a5f [file] [log] [blame]
// Copyright 2016 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.
[
RuntimeEnabled=WebAuth,
SecureContext
] interface WebAuthentication {
[CallWith=ScriptState] Promise<AuthenticatorAttestationResponse> makeCredential(MakeCredentialOptions publicKey);
[CallWith=ScriptState] Promise<AuthenticatorAssertionResponse> getAssertion(PublicKeyCredentialRequestOptions publicKey);
};