Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: content/public/common/content_features.cc

Issue 2810143002: Revert "Enable spec-compliant algorithm for MediaStream video constraints by default (patchset #1 i… (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 110
111 // FeatureList definition for trials to enable the download button on 111 // FeatureList definition for trials to enable the download button on
112 // MediaDocument. 112 // MediaDocument.
113 const base::Feature kMediaDocumentDownloadButton{ 113 const base::Feature kMediaDocumentDownloadButton{
114 "MediaDocumentDownloadButton", 114 "MediaDocumentDownloadButton",
115 base::FEATURE_DISABLED_BY_DEFAULT 115 base::FEATURE_DISABLED_BY_DEFAULT
116 }; 116 };
117 117
118 // Enables the old algorithm for processing video constraints in getUserMedia(). 118 // Enables the old algorithm for processing video constraints in getUserMedia().
119 const base::Feature kMediaStreamOldVideoConstraints{ 119 const base::Feature kMediaStreamOldVideoConstraints{
120 "MediaStreamOldVideoConstraints", base::FEATURE_DISABLED_BY_DEFAULT}; 120 "MediaStreamOldVideoConstraints", base::FEATURE_ENABLED_BY_DEFAULT};
121 121
122 // Enables the memory coordinator. 122 // Enables the memory coordinator.
123 // WARNING: 123 // WARNING:
124 // The memory coordinator is not ready for use and enabling this may cause 124 // The memory coordinator is not ready for use and enabling this may cause
125 // unexpected memory regression at this point. Please do not enable this. 125 // unexpected memory regression at this point. Please do not enable this.
126 const base::Feature kMemoryCoordinator { 126 const base::Feature kMemoryCoordinator {
127 "MemoryCoordinator", base::FEATURE_DISABLED_BY_DEFAULT 127 "MemoryCoordinator", base::FEATURE_DISABLED_BY_DEFAULT
128 }; 128 };
129 129
130 // Kill switch for Web Notification content images. 130 // Kill switch for Web Notification content images.
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 #endif // !defined(OS_ANDROID) 314 #endif // !defined(OS_ANDROID)
315 315
316 #if defined(OS_WIN) 316 #if defined(OS_WIN)
317 // Emergency "off switch" for new Windows sandbox security mitigation, 317 // Emergency "off switch" for new Windows sandbox security mitigation,
318 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 318 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
319 const base::Feature kWinSboxDisableExtensionPoints{ 319 const base::Feature kWinSboxDisableExtensionPoints{
320 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 320 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
321 #endif 321 #endif
322 322
323 } // namespace features 323 } // namespace features
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698