Ahmed Fakhry | 4f567e69 | 2018-10-16 15:51:08 | [diff] [blame] | 1 | // Copyright 2018 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 | |
| 5 | // This file defines the browser-specific base::FeatureList features that are |
| 6 | // not shared with other process types. |
| 7 | |
| 8 | #ifndef CHROME_BROWSER_BROWSER_FEATURES_H_ |
| 9 | #define CHROME_BROWSER_BROWSER_FEATURES_H_ |
| 10 | |
| 11 | #include "base/feature_list.h" |
Dan Beam | 3b88930 | 2018-12-01 01:40:50 | [diff] [blame] | 12 | #include "build/build_config.h" |
Ahmed Fakhry | 4f567e69 | 2018-10-16 15:51:08 | [diff] [blame] | 13 | |
| 14 | namespace features { |
| 15 | |
| 16 | // All features in alphabetical order. The features should be documented |
| 17 | // alongside the definition of their values in the .cc file. |
| 18 | |
| 19 | #if defined(OS_CHROMEOS) |
| 20 | extern const base::Feature kDoubleTapToZoomInTabletMode; |
| 21 | #endif |
| 22 | |
James Vecore | 30f589c2 | 2020-04-03 23:16:17 | [diff] [blame] | 23 | #if !defined(OS_ANDROID) |
| 24 | extern const base::Feature kNearbySharing; |
| 25 | #endif |
| 26 | |
Yann Dago | 9325f96e | 2020-01-24 16:58:37 | [diff] [blame] | 27 | #if !defined(OS_ANDROID) && !defined(OS_CHROMEOS) |
| 28 | extern const base::Feature kUserDataSnapshot; |
| 29 | #endif |
| 30 | |
Ahmed Fakhry | 4f567e69 | 2018-10-16 15:51:08 | [diff] [blame] | 31 | } // namespace features |
| 32 | |
| 33 | #endif // CHROME_BROWSER_BROWSER_FEATURES_H_ |