| 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 #include "chrome/common/chrome_features.h" | 5 #include "chrome/common/chrome_features.h" |
| 6 | 6 |
| 7 namespace features { | 7 namespace features { |
| 8 | 8 |
| 9 // All features in alphabetical order. | 9 // All features in alphabetical order. |
| 10 | 10 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 const base::Feature kOverrideYouTubeFlashEmbed{ | 88 const base::Feature kOverrideYouTubeFlashEmbed{ |
| 89 "OverrideYouTubeFlashEmbed", base::FEATURE_ENABLED_BY_DEFAULT}; | 89 "OverrideYouTubeFlashEmbed", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 90 | 90 |
| 91 // Enables or disables push subscriptions keeping Chrome running in the | 91 // Enables or disables push subscriptions keeping Chrome running in the |
| 92 // background when closed. | 92 // background when closed. |
| 93 const base::Feature kPushMessagingBackgroundMode{ | 93 const base::Feature kPushMessagingBackgroundMode{ |
| 94 "PushMessagingBackgroundMode", base::FEATURE_DISABLED_BY_DEFAULT}; | 94 "PushMessagingBackgroundMode", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 95 | 95 |
| 96 // Enables or disables the Material Design version of chrome://history. | 96 // Enables or disables the Material Design version of chrome://history. |
| 97 const base::Feature kMaterialDesignHistory{ | 97 const base::Feature kMaterialDesignHistory{ |
| 98 "MaterialDesignHistory", base::FEATURE_ENABLED_BY_DEFAULT}; | 98 "MaterialDesignHistory", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 99 | 99 |
| 100 // Enables or disables the Material Design version of chrome://settings. | 100 // Enables or disables the Material Design version of chrome://settings. |
| 101 // Also affects chrome://help. | 101 // Also affects chrome://help. |
| 102 const base::Feature kMaterialDesignSettings{ | 102 const base::Feature kMaterialDesignSettings{ |
| 103 "MaterialDesignSettings", base::FEATURE_DISABLED_BY_DEFAULT}; | 103 "MaterialDesignSettings", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 104 | 104 |
| 105 // Prefer HTML content by hiding Flash from the list of plugins. | 105 // Prefer HTML content by hiding Flash from the list of plugins. |
| 106 // https://crbug.com/626728 | 106 // https://crbug.com/626728 |
| 107 const base::Feature kPreferHtmlOverPlugins{"PreferHtmlOverPlugins", | 107 const base::Feature kPreferHtmlOverPlugins{"PreferHtmlOverPlugins", |
| 108 base::FEATURE_DISABLED_BY_DEFAULT}; | 108 base::FEATURE_DISABLED_BY_DEFAULT}; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 134 // Enables or disables the opt-in IME menu in the language settings page. | 134 // Enables or disables the opt-in IME menu in the language settings page. |
| 135 const base::Feature kOptInImeMenu{"OptInImeMenu", | 135 const base::Feature kOptInImeMenu{"OptInImeMenu", |
| 136 base::FEATURE_DISABLED_BY_DEFAULT}; | 136 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 137 | 137 |
| 138 // Enables or disables PIN quick unlock settings integration. | 138 // Enables or disables PIN quick unlock settings integration. |
| 139 const base::Feature kQuickUnlockPin{"QuickUnlockPin", | 139 const base::Feature kQuickUnlockPin{"QuickUnlockPin", |
| 140 base::FEATURE_DISABLED_BY_DEFAULT}; | 140 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 141 #endif // defined(OS_CHROMEOS) | 141 #endif // defined(OS_CHROMEOS) |
| 142 | 142 |
| 143 } // namespace features | 143 } // namespace features |
| OLD | NEW |