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

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

Issue 2698573002: Support offscreen contexts which own their backing surface (Closed)
Patch Set: Rebase and retry again Created 3 years, 10 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 // Enables the WebRTC Echo Canceller version 3 (AEC3). Feature for 252 // Enables the WebRTC Echo Canceller version 3 (AEC3). Feature for
253 // http://crbug.com/688388. This value is sent to WebRTC's echo canceller to 253 // http://crbug.com/688388. This value is sent to WebRTC's echo canceller to
254 // toggle which echo canceller should be used. 254 // toggle which echo canceller should be used.
255 const base::Feature kWebRtcUseEchoCanceller3{"WebRtcUseEchoCanceller3", 255 const base::Feature kWebRtcUseEchoCanceller3{"WebRtcUseEchoCanceller3",
256 base::FEATURE_DISABLED_BY_DEFAULT}; 256 base::FEATURE_DISABLED_BY_DEFAULT};
257 257
258 // Controls whether the WebUSB API is enabled: 258 // Controls whether the WebUSB API is enabled:
259 // https://wicg.github.io/webusb 259 // https://wicg.github.io/webusb
260 const base::Feature kWebUsb{"WebUSB", base::FEATURE_ENABLED_BY_DEFAULT}; 260 const base::Feature kWebUsb{"WebUSB", base::FEATURE_ENABLED_BY_DEFAULT};
261 261
262 // Enables WebVR experimental rendering optimizations.
263 const base::Feature kWebVRExperimentalRendering{
264 "WebVRExperimentalRendering", base::FEATURE_DISABLED_BY_DEFAULT};
265
262 // Make sendBeacon throw for a Blob with a non simple type. 266 // Make sendBeacon throw for a Blob with a non simple type.
263 const base::Feature kSendBeaconThrowForBlobWithNonSimpleType{ 267 const base::Feature kSendBeaconThrowForBlobWithNonSimpleType{
264 "SendBeaconThrowForBlobWithNonSimpleType", 268 "SendBeaconThrowForBlobWithNonSimpleType",
265 base::FEATURE_DISABLED_BY_DEFAULT}; 269 base::FEATURE_DISABLED_BY_DEFAULT};
266 270
267 #if defined(OS_ANDROID) 271 #if defined(OS_ANDROID)
268 // A browsing history manager implementation for Android. 272 // A browsing history manager implementation for Android.
269 const base::Feature kNativeAndroidHistoryManager{ 273 const base::Feature kNativeAndroidHistoryManager{
270 "AndroidHistoryManager", base::FEATURE_DISABLED_BY_DEFAULT}; 274 "AndroidHistoryManager", base::FEATURE_DISABLED_BY_DEFAULT};
271 275
(...skipping 22 matching lines...) Expand all
294 #endif // !defined(OS_ANDROID) 298 #endif // !defined(OS_ANDROID)
295 299
296 #if defined(OS_WIN) 300 #if defined(OS_WIN)
297 // Emergency "off switch" for new Windows sandbox security mitigation, 301 // Emergency "off switch" for new Windows sandbox security mitigation,
298 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 302 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
299 const base::Feature kWinSboxDisableExtensionPoints{ 303 const base::Feature kWinSboxDisableExtensionPoints{
300 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 304 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
301 #endif 305 #endif
302 306
303 } // namespace features 307 } // namespace features
OLDNEW
« no previous file with comments | « content/public/common/content_features.h ('k') | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698