| 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 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 // Makes all APIs reflect the layout viewport. | 591 // Makes all APIs reflect the layout viewport. |
| 592 const char kInertVisualViewport[] = "inert-visual-viewport"; | 592 const char kInertVisualViewport[] = "inert-visual-viewport"; |
| 593 | 593 |
| 594 // Run the GPU process as a thread in the browser process. | 594 // Run the GPU process as a thread in the browser process. |
| 595 const char kInProcessGPU[] = "in-process-gpu"; | 595 const char kInProcessGPU[] = "in-process-gpu"; |
| 596 | 596 |
| 597 // Overrides the timeout, in seconds, that a child process waits for a | 597 // Overrides the timeout, in seconds, that a child process waits for a |
| 598 // connection from the browser before killing itself. | 598 // connection from the browser before killing itself. |
| 599 const char kIPCConnectionTimeout[] = "ipc-connection-timeout"; | 599 const char kIPCConnectionTimeout[] = "ipc-connection-timeout"; |
| 600 | 600 |
| 601 // Tell renderer we are running in a mojo shell. |
| 602 const char kIsRunningInMojoShell[] = "is-running-in-mojo-shell"; |
| 603 |
| 601 // Disable latest shipping ECMAScript 6 features. | 604 // Disable latest shipping ECMAScript 6 features. |
| 602 const char kDisableJavaScriptHarmonyShipping[] = | 605 const char kDisableJavaScriptHarmonyShipping[] = |
| 603 "disable-javascript-harmony-shipping"; | 606 "disable-javascript-harmony-shipping"; |
| 604 | 607 |
| 605 // Enables experimental Harmony (ECMAScript 6) features. | 608 // Enables experimental Harmony (ECMAScript 6) features. |
| 606 const char kJavaScriptHarmony[] = "javascript-harmony"; | 609 const char kJavaScriptHarmony[] = "javascript-harmony"; |
| 607 | 610 |
| 608 // Enables experimental WebAssembly. | 611 // Enables experimental WebAssembly. |
| 609 const char kEnableWasm[] = "enable-wasm"; | 612 const char kEnableWasm[] = "enable-wasm"; |
| 610 | 613 |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1050 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1053 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1051 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1054 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1052 | 1055 |
| 1053 // Specifies the testcase used by the IPC fuzzer. | 1056 // Specifies the testcase used by the IPC fuzzer. |
| 1054 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1057 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1055 #endif | 1058 #endif |
| 1056 | 1059 |
| 1057 // Don't dump stuff here, follow the same order as the header. | 1060 // Don't dump stuff here, follow the same order as the header. |
| 1058 | 1061 |
| 1059 } // namespace switches | 1062 } // namespace switches |
| OLD | NEW |