| 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 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| 10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 // Enables payloads for received push messages when using the W3C Push API. | 366 // Enables payloads for received push messages when using the W3C Push API. |
| 367 const char kEnablePushMessagePayload[] = "enable-push-message-payload"; | 367 const char kEnablePushMessagePayload[] = "enable-push-message-payload"; |
| 368 | 368 |
| 369 // Set options to cache V8 data. (off, preparse data, or code) | 369 // Set options to cache V8 data. (off, preparse data, or code) |
| 370 const char kV8CacheOptions[] = "v8-cache-options"; | 370 const char kV8CacheOptions[] = "v8-cache-options"; |
| 371 | 371 |
| 372 // Enables the CSS multicol implementation that uses the regions implementation. | 372 // Enables the CSS multicol implementation that uses the regions implementation. |
| 373 const char kEnableRegionBasedColumns[] = | 373 const char kEnableRegionBasedColumns[] = |
| 374 "enable-region-based-columns"; | 374 "enable-region-based-columns"; |
| 375 | 375 |
| 376 // Replaces renderer-browser IPC channel with ChnanelMojo. | |
| 377 const char kEnableRendererMojoChannel[] = | |
| 378 "enable-renderer-mojo-channel"; | |
| 379 | |
| 380 // Cause the OS X sandbox write to syslog every time an access to a resource | 376 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 381 // is denied by the sandbox. | 377 // is denied by the sandbox. |
| 382 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 378 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 383 | 379 |
| 384 // Enables seccomp-bpf support for Android. Requires experimental kernel | 380 // Enables seccomp-bpf support for Android. Requires experimental kernel |
| 385 // support. <http://crbug.com/166704> | 381 // support. <http://crbug.com/166704> |
| 386 const char kEnableSeccompFilterSandbox[] = | 382 const char kEnableSeccompFilterSandbox[] = |
| 387 "enable-seccomp-filter-sandbox"; | 383 "enable-seccomp-filter-sandbox"; |
| 388 | 384 |
| 389 // Enables the Skia benchmarking extension | 385 // Enables the Skia benchmarking extension |
| (...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 959 const char kEnableNpapi[] = "enable-npapi"; | 955 const char kEnableNpapi[] = "enable-npapi"; |
| 960 | 956 |
| 961 #if defined(ENABLE_PLUGINS) | 957 #if defined(ENABLE_PLUGINS) |
| 962 // Enables the plugin power saver feature. | 958 // Enables the plugin power saver feature. |
| 963 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; | 959 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; |
| 964 #endif | 960 #endif |
| 965 | 961 |
| 966 // Don't dump stuff here, follow the same order as the header. | 962 // Don't dump stuff here, follow the same order as the header. |
| 967 | 963 |
| 968 } // namespace switches | 964 } // namespace switches |
| OLD | NEW |