// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/page_info/page_info_features.h" #include "base/feature_list.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/ui/ui_features.h" #include "components/page_info/core/features.h" namespace page_info { bool IsAboutThisSiteFeatureEnabled() { … } bool IsAboutThisSiteAsyncFetchingEnabled() { … } BASE_FEATURE(…); #if !BUILDFLAG(IS_ANDROID) bool IsPersistentSidePanelEntryFeatureEnabled() { … } BASE_FEATURE(…); #endif } // namespace page_info