| 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 // Dynamically apply color profiles to web content images. | 350 // Dynamically apply color profiles to web content images. |
| 351 const char kEnableImageColorProfiles[] = "enable-image-color-profiles"; | 351 const char kEnableImageColorProfiles[] = "enable-image-color-profiles"; |
| 352 | 352 |
| 353 // Force logging to be enabled. Logging is disabled by default in release | 353 // Force logging to be enabled. Logging is disabled by default in release |
| 354 // builds. | 354 // builds. |
| 355 const char kEnableLogging[] = "enable-logging"; | 355 const char kEnableLogging[] = "enable-logging"; |
| 356 | 356 |
| 357 // Enables the memory benchmarking extension | 357 // Enables the memory benchmarking extension |
| 358 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; | 358 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; |
| 359 | 359 |
| 360 // Prefer the namespace sandbox over the setuid sandbox when possible. |
| 361 const char kEnableNamespaceSandbox[] = "enable-namespace-sandbox"; |
| 362 |
| 360 // Enables the network information API. | 363 // Enables the network information API. |
| 361 const char kEnableNetworkInformation[] = "enable-network-information"; | 364 const char kEnableNetworkInformation[] = "enable-network-information"; |
| 362 | 365 |
| 363 // Enable rasterizer that writes directly to GPU memory. | 366 // Enable rasterizer that writes directly to GPU memory. |
| 364 const char kEnableOneCopy[] = "enable-one-copy"; | 367 const char kEnableOneCopy[] = "enable-one-copy"; |
| 365 | 368 |
| 366 // Enables use of hardware overlay for fullscreen video playback. Android only. | 369 // Enables use of hardware overlay for fullscreen video playback. Android only. |
| 367 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video"; | 370 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video"; |
| 368 | 371 |
| 369 // Enables compositor-accelerated touch-screen pinch gestures. | 372 // Enables compositor-accelerated touch-screen pinch gestures. |
| (...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 const char kEnableNpapi[] = "enable-npapi"; | 970 const char kEnableNpapi[] = "enable-npapi"; |
| 968 | 971 |
| 969 #if defined(ENABLE_PLUGINS) | 972 #if defined(ENABLE_PLUGINS) |
| 970 // Enables the plugin power saver feature. | 973 // Enables the plugin power saver feature. |
| 971 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; | 974 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; |
| 972 #endif | 975 #endif |
| 973 | 976 |
| 974 // Don't dump stuff here, follow the same order as the header. | 977 // Don't dump stuff here, follow the same order as the header. |
| 975 | 978 |
| 976 } // namespace switches | 979 } // namespace switches |
| OLD | NEW |