blob: 843acd2395a7c1b3ebf19d96f87f648e2207f0f1 [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 COMPONENTS_BROWSING_DATA_CORE_FEATURES_H_
#define COMPONENTS_BROWSING_DATA_CORE_FEATURES_H_
#include "base/feature_list.h"
namespace browsing_data::features {
// Pipes down the BrowsingDataModel to power site settings on Android.
#if BUILDFLAG(IS_ANDROID)
BASE_DECLARE_FEATURE(kBrowsingDataModel);
#endif // BUILDFLAG(IS_ANDROID)
#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
// Enables a revamped Delete Browsing Data dialog. This includes UI changes,
// updates to history counter logic and removal of the bulk password deletion
// option from the dialog.
BASE_DECLARE_FEATURE(kDbdRevampDesktop);
// Enables the Browsing History Actor Integration M1 feature. This feature
// introduces new ui and functionality related to the history integration in
// Chrome.
BASE_DECLARE_FEATURE(kBrowsingHistoryActorIntegrationM1);
#endif // !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
} // namespace browsing_data::features
#endif // COMPONENTS_BROWSING_DATA_CORE_FEATURES_H_