mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
This implements the following AO: - Create a FederatedCredential from FederatedCredentialInit. Which corresponds to this FederatedCredential ctor: - constructor(FederatedCredentialInit)
16 lines
366 B
C++
16 lines
366 B
C++
/*
|
|
* Copyright (c) 2025, Kenneth Myhra <kennethmyhra@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/CredentialManagement/FederatedCredential.h>
|
|
|
|
namespace Web::CredentialManagement {
|
|
|
|
WebIDL::ExceptionOr<GC::Ref<FederatedCredential>> create_federated_credential(JS::Realm& realm, FederatedCredentialInit const&);
|
|
|
|
}
|