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 #if defined(OS_MACOSX) | 66 #if defined(OS_MACOSX) |
65 extern const base::Feature kNativeNotifications; | 67 extern const base::Feature kNativeNotifications; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 | 108 |
107 extern const base::Feature kEHVInputOnImeMenu; | 109 extern const base::Feature kEHVInputOnImeMenu; |
108 #endif // defined(OS_CHROMEOS) | 110 #endif // defined(OS_CHROMEOS) |
109 | 111 |
110 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 112 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
111 // alphabetical order, or in one of the ifdefs (also in order in each section). | 113 // alphabetical order, or in one of the ifdefs (also in order in each section). |
112 | 114 |
113 } // namespace features | 115 } // namespace features |
114 | 116 |
115 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 117 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
OLD | NEW |