OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file defines all the public base::FeatureList features for the chrome | 5 // This file defines all the public base::FeatureList features for the chrome |
6 // module. | 6 // module. |
7 | 7 |
8 #ifndef CHROME_COMMON_CHROME_FEATURES_H_ | 8 #ifndef CHROME_COMMON_CHROME_FEATURES_H_ |
9 #define CHROME_COMMON_CHROME_FEATURES_H_ | 9 #define CHROME_COMMON_CHROME_FEATURES_H_ |
10 | 10 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 extern const base::Feature kExperimentalKeyboardLockUI; | 46 extern const base::Feature kExperimentalKeyboardLockUI; |
47 | 47 |
48 #if defined(OS_CHROMEOS) | 48 #if defined(OS_CHROMEOS) |
49 extern const base::Feature kHappinessTrackingSystem; | 49 extern const base::Feature kHappinessTrackingSystem; |
50 #endif | 50 #endif |
51 | 51 |
52 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) | 52 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) |
53 extern const base::Feature kLinuxObsoleteSystemIsEndOfTheLine; | 53 extern const base::Feature kLinuxObsoleteSystemIsEndOfTheLine; |
54 #endif | 54 #endif |
55 | 55 |
| 56 extern const base::Feature kMaterialDesignBookmarks; |
| 57 |
56 #if defined(ENABLE_EXTENSIONS) | 58 #if defined(ENABLE_EXTENSIONS) |
57 extern const base::Feature kMaterialDesignExtensions; | 59 extern const base::Feature kMaterialDesignExtensions; |
58 #endif | 60 #endif |
59 | 61 |
60 extern const base::Feature kMaterialDesignHistory; | 62 extern const base::Feature kMaterialDesignHistory; |
61 | 63 |
62 extern const base::Feature kMaterialDesignSettings; | 64 extern const base::Feature kMaterialDesignSettings; |
63 | 65 |
64 extern const base::Feature kModalPermissionPrompts; | 66 extern const base::Feature kModalPermissionPrompts; |
65 | 67 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 110 |
109 extern const base::Feature kEHVInputOnImeMenu; | 111 extern const base::Feature kEHVInputOnImeMenu; |
110 #endif // defined(OS_CHROMEOS) | 112 #endif // defined(OS_CHROMEOS) |
111 | 113 |
112 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 114 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
113 // alphabetical order, or in one of the ifdefs (also in order in each section). | 115 // alphabetical order, or in one of the ifdefs (also in order in each section). |
114 | 116 |
115 } // namespace features | 117 } // namespace features |
116 | 118 |
117 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 119 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
OLD | NEW |