chromium/components/trusted_vault/features.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/trusted_vault/features.h"

#include "base/feature_list.h"
#include "build/build_config.h"

namespace trusted_vault {

BASE_FEATURE();

BASE_FEATURE();

#if !BUILDFLAG(IS_ANDROID)
BASE_FEATURE();
#endif

#if BUILDFLAG(IS_CHROMEOS)
BASE_FEATURE(kChromeOSTrustedVaultUseWebUIDialog,
             "ChromeOSTrustedVaultUseWebUIDialog",
             base::FEATURE_ENABLED_BY_DEFAULT);

BASE_FEATURE(kChromeOSTrustedVaultClientShared,
             "ChromeOSTrustedVaultClientShared",
             base::FEATURE_ENABLED_BY_DEFAULT);
#endif

}  // namespace trusted_vault