#include "device/fido/features.h"
#include <vector>
#include "base/feature_list.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
namespace device {
#if BUILDFLAG(IS_WIN)
BASE_FEATURE(kWebAuthUseNativeWinApi,
"WebAuthenticationUseNativeWinApi",
base::FEATURE_ENABLED_BY_DEFAULT);
#endif
BASE_FEATURE(kWebAuthCableExtensionAnywhere,
"WebAuthenticationCableExtensionAnywhere",
base::FEATURE_DISABLED_BY_DEFAULT);
#if BUILDFLAG(IS_CHROMEOS)
BASE_FEATURE(kWebAuthCrosPlatformAuthenticator,
"WebAuthenticationCrosPlatformAuthenticator",
base::FEATURE_ENABLED_BY_DEFAULT);
#endif
BASE_FEATURE(kWebAuthnGoogleCorpRemoteDesktopClientPrivilege,
"WebAuthenticationGoogleCorpRemoteDesktopClientPrivilege",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kWebAuthPasskeysUI,
"WebAuthenticationPasskeysUI",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kWebAuthnCredProtectThree,
"WebAuthenticationCredProtectThree",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kWebAuthnPRFAsAuthenticator,
"WebAuthenticationPRFAsAuthenticator",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kWebAuthnMacPlatformAuthenticatorOptionalUv,
"WebAuthenticationMacPlatformAuthenticatorOptionalUv",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kWebAuthnPhoneConfirmationSheet,
"WebAuthenticationPhoneConfirmationSheet",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kWebAuthnNewPrioritiesImpl,
"WebAuthenticationNewPrioritiesImpl",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kWebAuthnAndroidCredMan,
"WebAuthenticationAndroidCredMan",
base::FEATURE_DISABLED_BY_DEFAULT);
}