Ehimare Okoyomon | 2eccb607 | 2020-05-12 12:22:27 | [diff] [blame] | 1 | // 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 Dullweber | 3f91c90c8 | 2020-09-09 10:48:26 | [diff] [blame] | 5 | #include "components/page_info/features.h" |
Ehimare Okoyomon | 2eccb607 | 2020-05-12 12:22:27 | [diff] [blame] | 6 | |
| 7 | #include "base/feature_list.h" |
| 8 | #include "base/metrics/field_trial_params.h" |
| 9 | |
| 10 | namespace page_info { |
| 11 | |
Christian Dullweber | 3f91c90c8 | 2020-09-09 10:48:26 | [diff] [blame] | 12 | #if defined(OS_ANDROID) |
Ehimare Okoyomon | 3b06843 | 2020-12-16 18:52:26 | [diff] [blame] | 13 | const base::Feature kPageInfoDiscoverability{"PageInfoDiscoverability", |
| 14 | base::FEATURE_DISABLED_BY_DEFAULT}; |
Jordan Oroshiba | 244e9ff | 2021-02-04 22:20:39 | [diff] [blame] | 15 | const base::Feature kPageInfoHistory{"PageInfoHistory", |
| 16 | base::FEATURE_DISABLED_BY_DEFAULT}; |
Christian Dullweber | e10195b4 | 2021-03-01 12:01:59 | [diff] [blame] | 17 | const base::Feature kPageInfoV2{"PageInfoV2", base::FEATURE_ENABLED_BY_DEFAULT}; |
Christian Dullweber | 3f91c90c8 | 2020-09-09 10:48:26 | [diff] [blame] | 18 | #endif |
Ehimare Okoyomon | 2eccb607 | 2020-05-12 12:22:27 | [diff] [blame] | 19 | |
Olesia Marukhno | 4d09c907 | 2021-04-08 09:43:23 | [diff] [blame^] | 20 | #if !defined(OS_ANDROID) |
| 21 | const base::Feature kPageInfoV2Desktop{"PageInfoV2Desktop", |
| 22 | base::FEATURE_DISABLED_BY_DEFAULT}; |
| 23 | #endif |
| 24 | |
| 25 | } // namespace page_info |