| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 extern const base::Feature kExperimentalKeyboardLockUI; | 61 extern const base::Feature kExperimentalKeyboardLockUI; |
| 62 | 62 |
| 63 #if defined(OS_WIN) | 63 #if defined(OS_WIN) |
| 64 extern const base::Feature kGdiTextPrinting; | 64 extern const base::Feature kGdiTextPrinting; |
| 65 #endif | 65 #endif |
| 66 | 66 |
| 67 #if defined(OS_CHROMEOS) | 67 #if defined(OS_CHROMEOS) |
| 68 extern const base::Feature kHappinessTrackingSystem; | 68 extern const base::Feature kHappinessTrackingSystem; |
| 69 #endif | 69 #endif |
| 70 | 70 |
| 71 extern const base::Feature kImprovedRecoveryComponent; |
| 72 |
| 71 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) | 73 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 72 extern const base::Feature kLinuxObsoleteSystemIsEndOfTheLine; | 74 extern const base::Feature kLinuxObsoleteSystemIsEndOfTheLine; |
| 73 #endif | 75 #endif |
| 74 | 76 |
| 75 extern const base::Feature kLsdPermissionPrompt; | 77 extern const base::Feature kLsdPermissionPrompt; |
| 76 | 78 |
| 77 extern const base::Feature kMaterialDesignBookmarks; | 79 extern const base::Feature kMaterialDesignBookmarks; |
| 78 | 80 |
| 79 #if BUILDFLAG(ENABLE_EXTENSIONS) | 81 #if BUILDFLAG(ENABLE_EXTENSIONS) |
| 80 extern const base::Feature kMaterialDesignExtensions; | 82 extern const base::Feature kMaterialDesignExtensions; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 | 157 |
| 156 extern const base::Feature kCrosCompUpdates; | 158 extern const base::Feature kCrosCompUpdates; |
| 157 #endif // defined(OS_CHROMEOS) | 159 #endif // defined(OS_CHROMEOS) |
| 158 | 160 |
| 159 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 161 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 160 // alphabetical order, or in one of the ifdefs (also in order in each section). | 162 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 161 | 163 |
| 162 } // namespace features | 164 } // namespace features |
| 163 | 165 |
| 164 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 166 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
| OLD | NEW |