| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 extern const base::Feature kBookmarkApps; | 53 extern const base::Feature kBookmarkApps; |
| 54 #endif | 54 #endif |
| 55 | 55 |
| 56 extern const base::Feature kBrowserHangFixesExperiment; | 56 extern const base::Feature kBrowserHangFixesExperiment; |
| 57 | 57 |
| 58 #if defined(OS_MACOSX) | 58 #if defined(OS_MACOSX) |
| 59 extern const base::Feature kBrowserTouchBar; | 59 extern const base::Feature kBrowserTouchBar; |
| 60 extern const base::Feature kTabStripKeyboardFocus; | 60 extern const base::Feature kTabStripKeyboardFocus; |
| 61 #endif // defined(OS_MACOSX) | 61 #endif // defined(OS_MACOSX) |
| 62 | 62 |
| 63 extern const base::Feature kCheckInstallabilityForBannerOnLoad; |
| 64 |
| 63 #if defined(OS_WIN) | 65 #if defined(OS_WIN) |
| 64 extern const base::Feature kCleanupToolUI; | 66 extern const base::Feature kCleanupToolUI; |
| 65 #endif | 67 #endif |
| 66 | 68 |
| 67 #if defined(OS_ANDROID) | 69 #if defined(OS_ANDROID) |
| 68 extern const base::Feature kConsistentOmniboxGeolocation; | 70 extern const base::Feature kConsistentOmniboxGeolocation; |
| 69 #endif | 71 #endif |
| 70 | 72 |
| 71 #if defined(OS_WIN) | 73 #if defined(OS_WIN) |
| 72 extern const base::Feature kDesktopIOSPromotion; | 74 extern const base::Feature kDesktopIOSPromotion; |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 #endif // defined(OS_CHROMEOS) | 179 #endif // defined(OS_CHROMEOS) |
| 178 | 180 |
| 179 bool PrefServiceEnabled(); | 181 bool PrefServiceEnabled(); |
| 180 | 182 |
| 181 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 183 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 182 // alphabetical order, or in one of the ifdefs (also in order in each section). | 184 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 183 | 185 |
| 184 } // namespace features | 186 } // namespace features |
| 185 | 187 |
| 186 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 188 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
| OLD | NEW |