Chromium Code Reviews| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 75 extern const base::Feature kExperimentalKeyboardLockUI; | 75 extern const base::Feature kExperimentalKeyboardLockUI; |
| 76 | 76 |
| 77 #if defined(OS_WIN) | 77 #if defined(OS_WIN) |
| 78 extern const base::Feature kGdiTextPrinting; | 78 extern const base::Feature kGdiTextPrinting; |
| 79 #endif | 79 #endif |
| 80 | 80 |
| 81 #if defined(OS_CHROMEOS) | 81 #if defined(OS_CHROMEOS) |
| 82 extern const base::Feature kHappinessTrackingSystem; | 82 extern const base::Feature kHappinessTrackingSystem; |
| 83 #endif | 83 #endif |
| 84 | 84 |
| 85 extern const base::Feature kImportantSitesInCBD; | |
|
dschuyler
2017/04/07 00:02:06
Low case letters following the first letter in an
dullweber
2017/04/07 09:39:21
Done.
| |
| 86 | |
| 85 extern const base::Feature kImprovedRecoveryComponent; | 87 extern const base::Feature kImprovedRecoveryComponent; |
| 86 | 88 |
| 87 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) | 89 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 88 extern const base::Feature kLinuxObsoleteSystemIsEndOfTheLine; | 90 extern const base::Feature kLinuxObsoleteSystemIsEndOfTheLine; |
| 89 #endif | 91 #endif |
| 90 | 92 |
| 91 extern const base::Feature kLsdPermissionPrompt; | 93 extern const base::Feature kLsdPermissionPrompt; |
| 92 | 94 |
| 93 extern const base::Feature kMaterialDesignBookmarks; | 95 extern const base::Feature kMaterialDesignBookmarks; |
| 94 | 96 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 171 | 173 |
| 172 extern const base::Feature kCrosCompUpdates; | 174 extern const base::Feature kCrosCompUpdates; |
| 173 #endif // defined(OS_CHROMEOS) | 175 #endif // defined(OS_CHROMEOS) |
| 174 | 176 |
| 175 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 177 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 176 // alphabetical order, or in one of the ifdefs (also in order in each section). | 178 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 177 | 179 |
| 178 } // namespace features | 180 } // namespace features |
| 179 | 181 |
| 180 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 182 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
| OLD | NEW |