| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 extern const base::Feature kBookmarkApps; | 55 extern const base::Feature kBookmarkApps; |
| 56 #endif | 56 #endif |
| 57 | 57 |
| 58 extern const base::Feature kBrowserHangFixesExperiment; | 58 extern const base::Feature kBrowserHangFixesExperiment; |
| 59 | 59 |
| 60 #if defined(OS_MACOSX) | 60 #if defined(OS_MACOSX) |
| 61 extern const base::Feature kBrowserTouchBar; | 61 extern const base::Feature kBrowserTouchBar; |
| 62 extern const base::Feature kTabStripKeyboardFocus; | 62 extern const base::Feature kTabStripKeyboardFocus; |
| 63 #endif // defined(OS_MACOSX) | 63 #endif // defined(OS_MACOSX) |
| 64 | 64 |
| 65 extern const base::Feature kCaptureThumbnailOnLoadFinished; |
| 66 |
| 65 extern const base::Feature kCheckInstallabilityForBannerOnLoad; | 67 extern const base::Feature kCheckInstallabilityForBannerOnLoad; |
| 66 | 68 |
| 67 #if defined(OS_WIN) | 69 #if defined(OS_WIN) |
| 68 extern const base::Feature kCleanupToolUI; | 70 extern const base::Feature kCleanupToolUI; |
| 69 #endif | 71 #endif |
| 70 | 72 |
| 71 #if defined(OS_ANDROID) | 73 #if defined(OS_ANDROID) |
| 72 extern const base::Feature kConsistentOmniboxGeolocation; | 74 extern const base::Feature kConsistentOmniboxGeolocation; |
| 73 #endif | 75 #endif |
| 74 | 76 |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 #endif // defined(OS_CHROMEOS) | 195 #endif // defined(OS_CHROMEOS) |
| 194 | 196 |
| 195 bool PrefServiceEnabled(); | 197 bool PrefServiceEnabled(); |
| 196 | 198 |
| 197 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 199 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 198 // alphabetical order, or in one of the ifdefs (also in order in each section). | 200 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 199 | 201 |
| 200 } // namespace features | 202 } // namespace features |
| 201 | 203 |
| 202 #endif // CHROME_COMMON_CHROME_FEATURES_H_ | 204 #endif // CHROME_COMMON_CHROME_FEATURES_H_ |
| OLD | NEW |