blob: c2a91f52afc89961c430e41d3165cb9098abe35c [file] [log] [blame]
// 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.
#ifndef IOS_CHROME_BROWSER_CREDENTIAL_PROVIDER_MODEL_FEATURES_H_
#define IOS_CHROME_BROWSER_CREDENTIAL_PROVIDER_MODEL_FEATURES_H_
#include "base/feature_list.h"
// Feature flag to enable automatic passkey upgrade for the credential
// provider.
BASE_DECLARE_FEATURE(kCredentialProviderAutomaticPasskeyUpgrade);
// Feature flag to enable passkey PRF support in the credential provider.
BASE_DECLARE_FEATURE(kCredentialProviderPasskeyPRF);
// Feature flag to enable passkey Large Blob support in the credential provider.
BASE_DECLARE_FEATURE(kCredentialProviderPasskeyLargeBlob);
// Feature flag to enable the performance improvements for the credential
// provider.
BASE_DECLARE_FEATURE(kCredentialProviderPerformanceImprovements);
// Feature flag to enable signal API in the credential provider.
BASE_DECLARE_FEATURE(kCredentialProviderSignalAPI);
// Returns whether the CPE Performance Improvement Feature is enabled.
bool IsCPEPerformanceImprovementsEnabled();
#endif // IOS_CHROME_BROWSER_CREDENTIAL_PROVIDER_MODEL_FEATURES_H_