| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_features.h" | 6 #include "content/public/common/content_features.h" |
| 7 | 7 |
| 8 namespace features { | 8 namespace features { |
| 9 | 9 |
| 10 // All features in alphabetical order. | 10 // All features in alphabetical order. |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 // Non-validating reload for desktop. | 70 // Non-validating reload for desktop. |
| 71 // See https://crbug.com/591245 | 71 // See https://crbug.com/591245 |
| 72 const base::Feature kNonValidatingReloadOnNormalReload{ | 72 const base::Feature kNonValidatingReloadOnNormalReload{ |
| 73 "NonValidatingReloadOnNormalReload", base::FEATURE_ENABLED_BY_DEFAULT}; | 73 "NonValidatingReloadOnNormalReload", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 74 | 74 |
| 75 // Non-validating reload on reload-to-refresh-content (e.g. pull-to-refresh). | 75 // Non-validating reload on reload-to-refresh-content (e.g. pull-to-refresh). |
| 76 // See https://crbug.com/591245 | 76 // See https://crbug.com/591245 |
| 77 const base::Feature kNonValidatingReloadOnRefreshContent{ | 77 const base::Feature kNonValidatingReloadOnRefreshContent{ |
| 78 "NonValidatingReloadOnRefreshContentV2", | 78 "NonValidatingReloadOnRefreshContentV2", |
| 79 base::FEATURE_DISABLED_BY_DEFAULT}; | 79 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 80 | 80 |
| 81 // An experiment to optimize resource loading IPC for small resources. | 81 // An experiment to optimize resource loading IPC for small resources. |
| 82 // http://crbug.com/580928 | 82 // http://crbug.com/580928 |
| 83 const base::Feature kOptimizeLoadingIPCForSmallResources{ | 83 const base::Feature kOptimizeLoadingIPCForSmallResources{ |
| 84 "OptimizeLoadingIPCForSmallResources", | 84 "OptimizeLoadingIPCForSmallResources", |
| 85 base::FEATURE_DISABLED_BY_DEFAULT}; | 85 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 86 | 86 |
| 87 // Origin Trials for controlling access to feature/API experiments. | 87 // Origin Trials for controlling access to feature/API experiments. |
| 88 const base::Feature kOriginTrials{"OriginTrials", | 88 const base::Feature kOriginTrials{"OriginTrials", |
| 89 base::FEATURE_ENABLED_BY_DEFAULT}; | 89 base::FEATURE_ENABLED_BY_DEFAULT}; |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 #endif | 185 #endif |
| 186 | 186 |
| 187 #if defined(OS_WIN) | 187 #if defined(OS_WIN) |
| 188 // Emergency "off switch" for new Windows sandbox security mitigation, | 188 // Emergency "off switch" for new Windows sandbox security mitigation, |
| 189 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 189 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 190 const base::Feature kWinSboxDisableExtensionPoints{ | 190 const base::Feature kWinSboxDisableExtensionPoints{ |
| 191 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 191 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 192 #endif | 192 #endif |
| 193 | 193 |
| 194 } // namespace features | 194 } // namespace features |
| OLD | NEW |