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

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

Issue 2821203005: Add a mojo implementation of AudioOutputIPC. (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
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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 219
220 // Enables token binding 220 // Enables token binding
221 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt). 221 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt).
222 const base::Feature kTokenBinding{"token-binding", 222 const base::Feature kTokenBinding{"token-binding",
223 base::FEATURE_DISABLED_BY_DEFAULT}; 223 base::FEATURE_DISABLED_BY_DEFAULT};
224 224
225 // Enables touchpad and wheel scroll latching. 225 // Enables touchpad and wheel scroll latching.
226 const base::Feature kTouchpadAndWheelScrollLatching{ 226 const base::Feature kTouchpadAndWheelScrollLatching{
227 "TouchpadAndWheelScrollLatching", base::FEATURE_DISABLED_BY_DEFAULT}; 227 "TouchpadAndWheelScrollLatching", base::FEATURE_DISABLED_BY_DEFAULT};
228 228
229 // Use MojoAudioOutputIPC and RenderFrameAudioOutputStreamFactory rather than
230 // AudioMessageFilter and AudioRendererHost.
231 const base::Feature kUseMojoAudioOutputStreamFactory{
232 "UseMojoAudioOutputStreamFactory", base::FEATURE_DISABLED_BY_DEFAULT};
o1ka 2017/04/20 10:35:59 This is "enabling a feature behind a flag", so it
Max Morin 2017/05/05 13:10:58 I removed the feature.
233
229 // Enables VR UI. 234 // Enables VR UI.
230 const base::Feature kVrShell{"VrShell", base::FEATURE_DISABLED_BY_DEFAULT}; 235 const base::Feature kVrShell{"VrShell", base::FEATURE_DISABLED_BY_DEFAULT};
231 236
232 // Enable WebAssembly. 237 // Enable WebAssembly.
233 // http://webassembly.org/ 238 // http://webassembly.org/
234 const base::Feature kWebAssembly{"WebAssembly", 239 const base::Feature kWebAssembly{"WebAssembly",
235 base::FEATURE_DISABLED_BY_DEFAULT}; 240 base::FEATURE_DISABLED_BY_DEFAULT};
236 241
237 // If WebGL Image Chromium is allowed, this feature controls whether it is 242 // If WebGL Image Chromium is allowed, this feature controls whether it is
238 // enabled. 243 // enabled.
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 #endif // !defined(OS_ANDROID) 315 #endif // !defined(OS_ANDROID)
311 316
312 #if defined(OS_WIN) 317 #if defined(OS_WIN)
313 // Emergency "off switch" for new Windows sandbox security mitigation, 318 // Emergency "off switch" for new Windows sandbox security mitigation,
314 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. 319 // sandbox::MITIGATION_EXTENSION_POINT_DISABLE.
315 const base::Feature kWinSboxDisableExtensionPoints{ 320 const base::Feature kWinSboxDisableExtensionPoints{
316 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; 321 "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT};
317 #endif 322 #endif
318 323
319 } // namespace features 324 } // namespace features
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698