// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/chrome/common/credential_provider/passkey_keychain_provider.h"
#import "base/functional/callback.h"
PasskeyKeychainProvider::PasskeyKeychainProvider(
bool metrics_reporting_enabled) {}
PasskeyKeychainProvider::~PasskeyKeychainProvider() = default;
void PasskeyKeychainProvider::CheckEnrolled(NSString* gaia,
CheckEnrolledCallback callback) {
if (!callback.is_null()) {
std::move(callback).Run(NO, nil);
}
}
void PasskeyKeychainProvider::Enroll(
NSString* gaia,
UINavigationController* navigation_controller,
UIView* navigation_item_title_view,
EnrollCallback callback) {
if (!callback.is_null()) {
std::move(callback).Run(nil);
}
}
void PasskeyKeychainProvider::FetchKeys(
NSString* gaia,
webauthn::ReauthenticatePurpose purpose,
webauthn::KeysFetchedCallback callback) {
if (!callback.is_null()) {
std::move(callback).Run({});
}
}
void PasskeyKeychainProvider::MarkKeysAsStale(
NSString* gaia,
KeysMarkedAsAsStaleCallback callback) {
if (!callback.is_null()) {
std::move(callback).Run();
}
}
void PasskeyKeychainProvider::Reauthenticate(
NSString* gaia,
UINavigationController* navigation_controller,
UIView* navigation_item_title_view,
webauthn::ReauthenticatePurpose purpose,
webauthn::KeysFetchedCallback callback) {
if (!callback.is_null()) {
std::move(callback).Run({});
}
}
void PasskeyKeychainProvider::CheckDegradedRecoverability(
NSString* gaia,
CheckDegradedRecoverabilityCallback callback) {
if (!callback.is_null()) {
std::move(callback).Run(NO, nil);
}
}
void PasskeyKeychainProvider::FixDegradedRecoverability(
NSString* gaia,
UINavigationController* navigation_controller,
UIView* navigation_item_title_view,
FixDegradedRecoverabilityCallback callback) {
if (!callback.is_null()) {
std::move(callback).Run(nil);
}
}