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

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

Issue 2886363002: Flip the kRequireSecureOriginsForPepperMediaRequests to enabled by default (Closed)
Patch Set: Flip the kRequireSecureOriginsForPepperMediaRequests to enabled by default Created 3 years, 7 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
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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 }; 201 };
202 202
203 // Throttle Blink's rendering pipeline based on frame visibility. 203 // Throttle Blink's rendering pipeline based on frame visibility.
204 const base::Feature kRenderingPipelineThrottling{ 204 const base::Feature kRenderingPipelineThrottling{
205 "RenderingPipelineThrottling", base::FEATURE_ENABLED_BY_DEFAULT}; 205 "RenderingPipelineThrottling", base::FEATURE_ENABLED_BY_DEFAULT};
206 206
207 // Require camera/mic requests from pepper plugins to be made from secure 207 // Require camera/mic requests from pepper plugins to be made from secure
208 // origins. 208 // origins.
209 const base::Feature kRequireSecureOriginsForPepperMediaRequests{ 209 const base::Feature kRequireSecureOriginsForPepperMediaRequests{
210 "RequireSecureOriginsForPepperMediaRequests", 210 "RequireSecureOriginsForPepperMediaRequests",
211 base::FEATURE_DISABLED_BY_DEFAULT}; 211 base::FEATURE_ENABLED_BY_DEFAULT};
212 212
213 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring). 213 // Scrolls to compensate for layout movements (bit.ly/scroll-anchoring).
214 const base::Feature kScrollAnchoring{"ScrollAnchoring", 214 const base::Feature kScrollAnchoring{"ScrollAnchoring",
215 base::FEATURE_ENABLED_BY_DEFAULT}; 215 base::FEATURE_ENABLED_BY_DEFAULT};
216 216
217 // Navigation preload feature of service workers. 217 // Navigation preload feature of service workers.
218 const base::Feature kServiceWorkerNavigationPreload{ 218 const base::Feature kServiceWorkerNavigationPreload{
219 "ServiceWorkerNavigationPreload", base::FEATURE_ENABLED_BY_DEFAULT}; 219 "ServiceWorkerNavigationPreload", base::FEATURE_ENABLED_BY_DEFAULT};
220 220
221 // http://tc39.github.io/ecmascript_sharedmem/shmem.html 221 // http://tc39.github.io/ecmascript_sharedmem/shmem.html
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 #endif 346 #endif
347 347
348 #if defined(OS_WIN) 348 #if defined(OS_WIN)
349 // Emergency "off switch" for new Windows sandbox security mitigation, 349 // Emergency "off switch" for new Windows sandbox security mitigation,
350 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 350 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
351 const base::Feature kWinSboxDisableExtensionPoints{ 351 const base::Feature kWinSboxDisableExtensionPoints{
352 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 352 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
353 #endif 353 #endif
354 354
355 } // namespace features 355 } // namespace features
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698