| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 #if defined(OS_MACOSX) | 173 #if defined(OS_MACOSX) |
| 174 const base::Feature kNativeNotifications{"NativeNotifications", | 174 const base::Feature kNativeNotifications{"NativeNotifications", |
| 175 base::FEATURE_DISABLED_BY_DEFAULT}; | 175 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 176 #endif // defined(OS_MACOSX) | 176 #endif // defined(OS_MACOSX) |
| 177 | 177 |
| 178 // If enabled, the list of content suggestions on the New Tab page will contain | 178 // If enabled, the list of content suggestions on the New Tab page will contain |
| 179 // pages that the user downloaded for later use. | 179 // pages that the user downloaded for later use. |
| 180 const base::Feature kOfflinePageDownloadSuggestionsFeature{ | 180 const base::Feature kOfflinePageDownloadSuggestionsFeature{ |
| 181 "NTPOfflinePageDownloadSuggestions", base::FEATURE_ENABLED_BY_DEFAULT}; | 181 "NTPOfflinePageDownloadSuggestions", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 182 | 182 |
| 183 const base::Feature kParallelDownloading{ | |
| 184 "ParallelDownloading", base::FEATURE_DISABLED_BY_DEFAULT}; | |
| 185 | |
| 186 // Enables Permissions Blacklisting via Safe Browsing. | 183 // Enables Permissions Blacklisting via Safe Browsing. |
| 187 const base::Feature kPermissionsBlacklist{ | 184 const base::Feature kPermissionsBlacklist{ |
| 188 "PermissionsBlacklist", base::FEATURE_DISABLED_BY_DEFAULT}; | 185 "PermissionsBlacklist", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 189 | 186 |
| 190 // Enables postscript generation instead of emf when printing to postscript | 187 // Enables postscript generation instead of emf when printing to postscript |
| 191 // capable printers. | 188 // capable printers. |
| 192 #if defined(OS_WIN) | 189 #if defined(OS_WIN) |
| 193 const base::Feature kPostScriptPrinting{"PostScriptPrinting", | 190 const base::Feature kPostScriptPrinting{"PostScriptPrinting", |
| 194 base::FEATURE_DISABLED_BY_DEFAULT}; | 191 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 195 #endif // OS_WIN | 192 #endif // OS_WIN |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. | 269 // Enables or disables emoji, handwriting and voice input on opt-in IME menu. |
| 273 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", | 270 const base::Feature kEHVInputOnImeMenu{"EmojiHandwritingVoiceInput", |
| 274 base::FEATURE_ENABLED_BY_DEFAULT}; | 271 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 275 | 272 |
| 276 // Enables or disables flash component updates on Chrome OS. | 273 // Enables or disables flash component updates on Chrome OS. |
| 277 const base::Feature kCrosCompUpdates{"CrosCompUpdates", | 274 const base::Feature kCrosCompUpdates{"CrosCompUpdates", |
| 278 base::FEATURE_ENABLED_BY_DEFAULT}; | 275 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 279 #endif // defined(OS_CHROMEOS) | 276 #endif // defined(OS_CHROMEOS) |
| 280 | 277 |
| 281 } // namespace features | 278 } // namespace features |
| OLD | NEW |