| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 131 |
| 132 // FeatureList definition for trials to enable the download button on | 132 // FeatureList definition for trials to enable the download button on |
| 133 // MediaDocument. | 133 // MediaDocument. |
| 134 const base::Feature kMediaDocumentDownloadButton{ | 134 const base::Feature kMediaDocumentDownloadButton{ |
| 135 "MediaDocumentDownloadButton", | 135 "MediaDocumentDownloadButton", |
| 136 base::FEATURE_DISABLED_BY_DEFAULT | 136 base::FEATURE_DISABLED_BY_DEFAULT |
| 137 }; | 137 }; |
| 138 | 138 |
| 139 // Enables the old algorithm for processing audio constraints in getUserMedia(). | 139 // Enables the old algorithm for processing audio constraints in getUserMedia(). |
| 140 const base::Feature kMediaStreamOldAudioConstraints{ | 140 const base::Feature kMediaStreamOldAudioConstraints{ |
| 141 "MediaStreamOldAudioConstraints", base::FEATURE_ENABLED_BY_DEFAULT}; | 141 "MediaStreamOldAudioConstraints", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 142 | 142 |
| 143 // Enables the old algorithm for processing video constraints in getUserMedia(). | 143 // Enables the old algorithm for processing video constraints in getUserMedia(). |
| 144 const base::Feature kMediaStreamOldVideoConstraints{ | 144 const base::Feature kMediaStreamOldVideoConstraints{ |
| 145 "MediaStreamOldVideoConstraints", base::FEATURE_DISABLED_BY_DEFAULT}; | 145 "MediaStreamOldVideoConstraints", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 146 | 146 |
| 147 // Enables the memory coordinator. | 147 // Enables the memory coordinator. |
| 148 // WARNING: | 148 // WARNING: |
| 149 // The memory coordinator is not ready for use and enabling this may cause | 149 // The memory coordinator is not ready for use and enabling this may cause |
| 150 // unexpected memory regression at this point. Please do not enable this. | 150 // unexpected memory regression at this point. Please do not enable this. |
| 151 const base::Feature kMemoryCoordinator { | 151 const base::Feature kMemoryCoordinator { |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 #endif | 377 #endif |
| 378 | 378 |
| 379 #if defined(OS_WIN) | 379 #if defined(OS_WIN) |
| 380 // Emergency "off switch" for new Windows sandbox security mitigation, | 380 // Emergency "off switch" for new Windows sandbox security mitigation, |
| 381 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. | 381 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. |
| 382 const base::Feature kWinSboxDisableExtensionPoints{ | 382 const base::Feature kWinSboxDisableExtensionPoints{ |
| 383 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; | 383 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 384 #endif | 384 #endif |
| 385 | 385 |
| 386 } // namespace features | 386 } // namespace features |
| OLD | NEW |