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 "build/build_config.h" | 5 #include "build/build_config.h" |
6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
7 | 7 |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 // Force logging to be enabled. Logging is disabled by default in release | 402 // Force logging to be enabled. Logging is disabled by default in release |
403 // builds. | 403 // builds. |
404 const char kEnableLogging[] = "enable-logging"; | 404 const char kEnableLogging[] = "enable-logging"; |
405 | 405 |
406 // Enables the memory benchmarking extension | 406 // Enables the memory benchmarking extension |
407 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; | 407 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; |
408 | 408 |
409 // Enables the network information API. | 409 // Enables the network information API. |
410 const char kEnableNetworkInformation[] = "enable-network-information"; | 410 const char kEnableNetworkInformation[] = "enable-network-information"; |
411 | 411 |
412 // Enable the video decoder to draw to an NV12 textures instead of ARGB. | 412 // Disables the video decoder from drawing to an NV12 textures instead of ARGB. |
413 const char kEnableNv12DxgiVideo[] = "enable-nv12-dxgi-video"; | 413 const char kDisableNv12DxgiVideo[] = "disable-nv12-dxgi-video"; |
414 | 414 |
415 // Enables compositor-accelerated touch-screen pinch gestures. | 415 // Enables compositor-accelerated touch-screen pinch gestures. |
416 const char kEnablePinch[] = "enable-pinch"; | 416 const char kEnablePinch[] = "enable-pinch"; |
417 | 417 |
418 // Enables testing features of the Plugin Placeholder. For internal use only. | 418 // Enables testing features of the Plugin Placeholder. For internal use only. |
419 const char kEnablePluginPlaceholderTesting[] = | 419 const char kEnablePluginPlaceholderTesting[] = |
420 "enable-plugin-placeholder-testing"; | 420 "enable-plugin-placeholder-testing"; |
421 | 421 |
422 // Make the values returned to window.performance.memory more granular and more | 422 // Make the values returned to window.performance.memory more granular and more |
423 // up to date in shared worker. Without this flag, the memory information is | 423 // up to date in shared worker. Without this flag, the memory information is |
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1054 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1054 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1055 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1055 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1056 | 1056 |
1057 // Specifies the testcase used by the IPC fuzzer. | 1057 // Specifies the testcase used by the IPC fuzzer. |
1058 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1058 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1059 #endif | 1059 #endif |
1060 | 1060 |
1061 // Don't dump stuff here, follow the same order as the header. | 1061 // Don't dump stuff here, follow the same order as the header. |
1062 | 1062 |
1063 } // namespace switches | 1063 } // namespace switches |
OLD | NEW |