blob: 1f612452e16213ea8bc442c3df7dc9efa69ea46e [file] [log] [blame]
// Copyright 2018 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.
#include "device/fido/features.h"
#include <vector>
#include "base/feature_list.h"
#include "base/strings/string_split.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "url/origin.h"
namespace device {
#if defined(OS_WIN)
const base::Feature kWebAuthUseNativeWinApi{"WebAuthenticationUseNativeWinApi",
base::FEATURE_ENABLED_BY_DEFAULT};
#endif // defined(OS_WIN)
extern const base::Feature kWebAuthCableServerLink {
// This feature is default-enabled in the same cases as |kWebAuthCable|.
"WebAuthenticationCableServerLink",
// TODO(crbug.com/1052397): Revisit the macro expression once build flag switch
// of lacros-chrome is complete.
// If updating this, also update kWebAuthCable.
#if BUILDFLAG(IS_CHROMEOS_LACROS) || defined(OS_LINUX)
base::FEATURE_DISABLED_BY_DEFAULT
#else
base::FEATURE_ENABLED_BY_DEFAULT
#endif
};
extern const base::Feature kWebAuthCableSecondFactor{
"WebAuthenticationCableSecondFactor", base::FEATURE_DISABLED_BY_DEFAULT};
extern const base::Feature kWebAuthPhoneSupport{
"WebAuthenticationPhoneSupport", base::FEATURE_DISABLED_BY_DEFAULT};
extern const base::Feature kWebAuthCableExtensionAnywhere{
"WebAuthenticationCableExtensionAnywhere",
base::FEATURE_DISABLED_BY_DEFAULT};
#if BUILDFLAG(IS_CHROMEOS_ASH)
const base::Feature kWebAuthCrosPlatformAuthenticator{
"WebAuthenticationCrosPlatformAuthenticator",
base::FEATURE_ENABLED_BY_DEFAULT};
#endif // BUILDFLAG(IS_CHROMEOS_ASH)
} // namespace device