| Index: content/public/common/content_switches.cc
|
| diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
|
| index 18a69859839723531e36c8da6f12e26ec96eff8c..f42b07f6b407de412548da9e223b2abf673fd3f1 100644
|
| --- a/content/public/common/content_switches.cc
|
| +++ b/content/public/common/content_switches.cc
|
| @@ -234,10 +234,6 @@ const char kDisableLocalStorage[] = "disable-local-storage";
|
| // builds.
|
| const char kDisableLogging[] = "disable-logging";
|
|
|
| -// Disable rasterizer that writes directly to GPU memory.
|
| -// Overrides the kEnableMapImage flag.
|
| -const char kDisableMapImage[] = "disable-map-image";
|
| -
|
| // Disables Media Source API (i.e., the MediaSource object).
|
| const char kDisableMediaSource[] = "disable-media-source";
|
|
|
| @@ -309,6 +305,10 @@ const char kDisableXSLT[] = "disable-xslt";
|
| // Disables Blink's XSSAuditor. The XSSAuditor mitigates reflective XSS.
|
| const char kDisableXSSAuditor[] = "disable-xss-auditor";
|
|
|
| +// Disable rasterizer that writes directly to GPU memory associated with tiles.
|
| +// Overrides the kEnableZeroCopy flag.
|
| +const char kDisableZeroCopy[] = "disable-zero-copy";
|
| +
|
| // 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
|
| @@ -444,9 +444,6 @@ const char kEnableInbandTextTracks[] = "enable-inband-text-tracks";
|
| // builds.
|
| const char kEnableLogging[] = "enable-logging";
|
|
|
| -// Enable rasterizer that writes directly to GPU memory.
|
| -const char kEnableMapImage[] = "enable-map-image";
|
| -
|
| // Enables the memory benchmarking extension
|
| const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking";
|
|
|
| @@ -464,6 +461,9 @@ const char kEnableMonitorProfile[] = "enable-monitor-profile";
|
| // Enables use of cache if offline, even if it's stale
|
| const char kEnableOfflineCacheAccess[] = "enable-offline-cache-access";
|
|
|
| +// Enable rasterizer that writes directly to GPU memory.
|
| +const char kEnableOneCopy[] = "enable-one-copy";
|
| +
|
| // Enables use of hardware overlay for fullscreen video playback. Android only.
|
| const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video";
|
|
|
| @@ -581,6 +581,9 @@ const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions";
|
| // Enables Web MIDI API.
|
| const char kEnableWebMIDI[] = "enable-web-midi";
|
|
|
| +// Enable rasterizer that writes directly to GPU memory associated with tiles.
|
| +const char kEnableZeroCopy[] = "enable-zero-copy";
|
| +
|
| // Load NPAPI plugins from the specified directory.
|
| const char kExtraPluginDir[] = "extra-plugin-dir";
|
|
|
|
|