| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
| 6 | 6 |
| 7 namespace switches { | 7 namespace switches { |
| 8 | 8 |
| 9 // By default, file:// URIs cannot read other file:// URIs. This is an | 9 // By default, file:// URIs cannot read other file:// URIs. This is an |
| 10 // override for developers who need the old behavior for testing. | 10 // override for developers who need the old behavior for testing. |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 | 305 |
| 306 // Enable privileged WebGL extensions; without this switch such extensions are | 306 // Enable privileged WebGL extensions; without this switch such extensions are |
| 307 // available only to Chrome extensions. | 307 // available only to Chrome extensions. |
| 308 const char kEnablePrivilegedWebGLExtensions[] = | 308 const char kEnablePrivilegedWebGLExtensions[] = |
| 309 "enable-privileged-webgl-extensions"; | 309 "enable-privileged-webgl-extensions"; |
| 310 | 310 |
| 311 // Aggressively free GPU command buffers belonging to hidden tabs. | 311 // Aggressively free GPU command buffers belonging to hidden tabs. |
| 312 const char kEnablePruneGpuCommandBuffers[] = | 312 const char kEnablePruneGpuCommandBuffers[] = |
| 313 "enable-prune-gpu-command-buffers"; | 313 "enable-prune-gpu-command-buffers"; |
| 314 | 314 |
| 315 // Enable renderer side mixing and low latency audio path for media elements. |
| 316 const char kEnableRendererSideMixing[] = "enable-renderer-side-mixing"; |
| 317 |
| 315 // Enables TLS cached info extension. | 318 // Enables TLS cached info extension. |
| 316 const char kEnableSSLCachedInfo[] = "enable-ssl-cached-info"; | 319 const char kEnableSSLCachedInfo[] = "enable-ssl-cached-info"; |
| 317 | 320 |
| 318 // Cause the OS X sandbox write to syslog every time an access to a resource | 321 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 319 // is denied by the sandbox. | 322 // is denied by the sandbox. |
| 320 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 323 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 321 | 324 |
| 322 // Enable the seccomp sandbox (Linux only) | 325 // Enable the seccomp sandbox (Linux only) |
| 323 const char kEnableSeccompSandbox[] = "enable-seccomp-sandbox"; | 326 const char kEnableSeccompSandbox[] = "enable-seccomp-sandbox"; |
| 324 | 327 |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 const char kDefaultTileWidth[] = "default-tile-width"; | 669 const char kDefaultTileWidth[] = "default-tile-width"; |
| 667 const char kDefaultTileHeight[] = "default-tile-height"; | 670 const char kDefaultTileHeight[] = "default-tile-height"; |
| 668 | 671 |
| 669 // Sets the width and height above which a composited layer will get tiled. | 672 // Sets the width and height above which a composited layer will get tiled. |
| 670 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; | 673 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; |
| 671 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; | 674 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; |
| 672 | 675 |
| 673 const char kFixedPositionCreatesStackingContext[] | 676 const char kFixedPositionCreatesStackingContext[] |
| 674 = "fixed-position-creates-stacking-context"; | 677 = "fixed-position-creates-stacking-context"; |
| 675 } // namespace switches | 678 } // namespace switches |
| OLD | NEW |