blob: 9d9f81da86628ed3da65358091492bf01982c844 [file] [log] [blame]
Ehimare Okoyomon2eccb6072020-05-12 12:22:271// Copyright 2020 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Christian Dullweber3f91c90c82020-09-09 10:48:265#include "components/page_info/features.h"
Ehimare Okoyomon2eccb6072020-05-12 12:22:276
7#include "base/feature_list.h"
8#include "base/metrics/field_trial_params.h"
9
10namespace page_info {
11
Christian Dullweber3f91c90c82020-09-09 10:48:2612#if defined(OS_ANDROID)
Ehimare Okoyomon3b068432020-12-16 18:52:2613const base::Feature kPageInfoDiscoverability{"PageInfoDiscoverability",
14 base::FEATURE_DISABLED_BY_DEFAULT};
Jordan Oroshiba244e9ff2021-02-04 22:20:3915const base::Feature kPageInfoHistory{"PageInfoHistory",
16 base::FEATURE_DISABLED_BY_DEFAULT};
Christian Dullwebere10195b42021-03-01 12:01:5917const base::Feature kPageInfoV2{"PageInfoV2", base::FEATURE_ENABLED_BY_DEFAULT};
Christian Dullweber3f91c90c82020-09-09 10:48:2618#endif
Ehimare Okoyomon2eccb6072020-05-12 12:22:2719
Olesia Marukhno4d09c9072021-04-08 09:43:2320#if !defined(OS_ANDROID)
21const base::Feature kPageInfoV2Desktop{"PageInfoV2Desktop",
22 base::FEATURE_DISABLED_BY_DEFAULT};
23#endif
24
25} // namespace page_info