| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 #endif | 54 #endif |
| 55 | 55 |
| 56 #if defined(ENABLE_EXTENSIONS) | 56 #if defined(ENABLE_EXTENSIONS) |
| 57 extern const base::Feature kMaterialDesignExtensions; | 57 extern const base::Feature kMaterialDesignExtensions; |
| 58 #endif | 58 #endif |
| 59 | 59 |
| 60 extern const base::Feature kMaterialDesignHistory; | 60 extern const base::Feature kMaterialDesignHistory; |
| 61 | 61 |
| 62 extern const base::Feature kMaterialDesignSettings; | 62 extern const base::Feature kMaterialDesignSettings; |
| 63 | 63 |
| 64 extern const base::Feature kModalPermissionPrompts; |
| 65 |
| 64 #if defined(OS_MACOSX) | 66 #if defined(OS_MACOSX) |
| 65 extern const base::Feature kNativeNotifications; | 67 extern const base::Feature kNativeNotifications; |
| 66 #endif // defined(OS_MACOSX) | 68 #endif // defined(OS_MACOSX) |
| 67 | 69 |
| 68 extern const base::Feature kOverrideYouTubeFlashEmbed; | 70 extern const base::Feature kOverrideYouTubeFlashEmbed; |
| 69 | 71 |
| 70 #if defined(ENABLE_PLUGINS) | 72 #if defined(ENABLE_PLUGINS) |
| 71 extern const base::Feature kPreferHtmlOverPlugins; | 73 extern const base::Feature kPreferHtmlOverPlugins; |
| 72 #endif | 74 #endif |
| 73 | 75 |
| (...skipping 32 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 |