| 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 #include "extensions/features/features.h" | 7 #include "extensions/features/features.h" |
| 8 #include "ppapi/features/features.h" | 8 #include "ppapi/features/features.h" |
| 9 | 9 |
| 10 namespace features { | 10 namespace features { |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 // Prefer HTML content by hiding Flash from the list of plugins. | 184 // Prefer HTML content by hiding Flash from the list of plugins. |
| 185 // https://crbug.com/626728 | 185 // https://crbug.com/626728 |
| 186 const base::Feature kPreferHtmlOverPlugins{"PreferHtmlOverPlugins", | 186 const base::Feature kPreferHtmlOverPlugins{"PreferHtmlOverPlugins", |
| 187 base::FEATURE_DISABLED_BY_DEFAULT}; | 187 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 188 #endif | 188 #endif |
| 189 | 189 |
| 190 #if defined(OS_CHROMEOS) | 190 #if defined(OS_CHROMEOS) |
| 191 // The lock screen will be preloaded so it is instantly available when the user | 191 // The lock screen will be preloaded so it is instantly available when the user |
| 192 // locks the Chromebook device. | 192 // locks the Chromebook device. |
| 193 const base::Feature kPreloadLockScreen{"PreloadLockScreen", | 193 const base::Feature kPreloadLockScreen{"PreloadLockScreen", |
| 194 base::FEATURE_DISABLED_BY_DEFAULT}; | 194 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 195 #endif | 195 #endif |
| 196 | 196 |
| 197 // Enables the Print Scaling feature in print preview. | 197 // Enables the Print Scaling feature in print preview. |
| 198 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) | 198 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) |
| 199 const base::Feature kPrintPdfAsImage{"PrintPdfAsImage", | 199 const base::Feature kPrintPdfAsImage{"PrintPdfAsImage", |
| 200 base::FEATURE_DISABLED_BY_DEFAULT}; | 200 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 201 | 201 |
| 202 const base::Feature kPrintScaling{"PrintScaling", | 202 const base::Feature kPrintScaling{"PrintScaling", |
| 203 base::FEATURE_DISABLED_BY_DEFAULT}; | 203 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 204 #endif | 204 #endif |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 254 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 255 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 255 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 256 base::FEATURE_ENABLED_BY_DEFAULT}; | 256 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 257 | 257 |
| 258 // Enables or disables flash component updates on Chrome OS. | 258 // Enables or disables flash component updates on Chrome OS. |
| 259 const base::Feature kCrosCompUpdates{"CrosCompUpdates", | 259 const base::Feature kCrosCompUpdates{"CrosCompUpdates", |
| 260 base::FEATURE_ENABLED_BY_DEFAULT}; | 260 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 261 #endif // defined(OS_CHROMEOS) | 261 #endif // defined(OS_CHROMEOS) |
| 262 | 262 |
| 263 } // namespace features | 263 } // namespace features |
| OLD | NEW |