| 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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 // impl-side painting. | 349 // impl-side painting. |
| 350 const char kEnableGpuRasterization[] = "enable-gpu-rasterization"; | 350 const char kEnableGpuRasterization[] = "enable-gpu-rasterization"; |
| 351 | 351 |
| 352 // When using CPU rasterizing generate low resolution tiling. Low res | 352 // When using CPU rasterizing generate low resolution tiling. Low res |
| 353 // tiles may be displayed during fast scrolls especially on slower devices. | 353 // tiles may be displayed during fast scrolls especially on slower devices. |
| 354 const char kEnableLowResTiling[] = "enable-low-res-tiling"; | 354 const char kEnableLowResTiling[] = "enable-low-res-tiling"; |
| 355 | 355 |
| 356 // Paint content on the compositor thread instead of the main thread. | 356 // Paint content on the compositor thread instead of the main thread. |
| 357 const char kEnableImplSidePainting[] = "enable-impl-side-painting"; | 357 const char kEnableImplSidePainting[] = "enable-impl-side-painting"; |
| 358 | 358 |
| 359 // Enables support for inband text tracks in media content. | |
| 360 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; | |
| 361 | |
| 362 // Force logging to be enabled. Logging is disabled by default in release | 359 // Force logging to be enabled. Logging is disabled by default in release |
| 363 // builds. | 360 // builds. |
| 364 const char kEnableLogging[] = "enable-logging"; | 361 const char kEnableLogging[] = "enable-logging"; |
| 365 | 362 |
| 366 // Enables the memory benchmarking extension | 363 // Enables the memory benchmarking extension |
| 367 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; | 364 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; |
| 368 | 365 |
| 369 // Enables the network information API. | 366 // Enables the network information API. |
| 370 const char kEnableNetworkInformation[] = "enable-network-information"; | 367 const char kEnableNetworkInformation[] = "enable-network-information"; |
| 371 | 368 |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 933 // Enable the Win32K process mitigation policy for renderer processes which | 930 // Enable the Win32K process mitigation policy for renderer processes which |
| 934 // prevents them from invoking user32 and gdi32 system calls which enter | 931 // prevents them from invoking user32 and gdi32 system calls which enter |
| 935 // the kernel. This is only supported on Windows 8 and beyond. | 932 // the kernel. This is only supported on Windows 8 and beyond. |
| 936 const char kEnableWin32kRendererLockDown[] | 933 const char kEnableWin32kRendererLockDown[] |
| 937 = "enable_win32k_renderer_lockdown"; | 934 = "enable_win32k_renderer_lockdown"; |
| 938 #endif | 935 #endif |
| 939 | 936 |
| 940 // Don't dump stuff here, follow the same order as the header. | 937 // Don't dump stuff here, follow the same order as the header. |
| 941 | 938 |
| 942 } // namespace switches | 939 } // namespace switches |
| OLD | NEW |