| Index: content/public/common/content_switches.cc
|
| diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
|
| index 4383bb36f8b81e4ffbbc33573fb77825274cd94c..f86f88b6d92f6ef6bbe3826644c2f5bafdf6942c 100644
|
| --- a/content/public/common/content_switches.cc
|
| +++ b/content/public/common/content_switches.cc
|
| @@ -308,6 +308,9 @@ const char kDisableXSSAuditor[] = "disable-xss-auditor";
|
| // Disable rasterizer that writes directly to GPU memory associated with tiles.
|
| const char kDisableZeroCopy[] = "disable-zero-copy";
|
|
|
| +// Disable the video decoder from drawing directly to a texture.
|
| +const char kDisableZeroCopyDxgiVideo[] = "disable-zero-copy-dxgi-video";
|
| +
|
| // Specifies if the |DOMAutomationController| needs to be bound in the
|
| // renderer. This binding happens on per-frame basis and hence can potentially
|
| // be a performance bottleneck. One should only enable it when automating dom
|
| @@ -519,9 +522,6 @@ const char kEnableWebVR[] = "enable-webvr";
|
| // Enable rasterizer that writes directly to GPU memory associated with tiles.
|
| const char kEnableZeroCopy[] = "enable-zero-copy";
|
|
|
| -// Enable the video decoder to draw directly to a texture.
|
| -const char kEnableZeroCopyDxgiVideo[] = "enable-zero-copy-dxgi-video";
|
| -
|
| // Explicitly allows additional ports using a comma-separated list of port
|
| // numbers.
|
| const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports";
|
|
|