| 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 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 // Makes all APIs reflect the layout viewport. | 597 // Makes all APIs reflect the layout viewport. |
| 598 const char kInertVisualViewport[] = "inert-visual-viewport"; | 598 const char kInertVisualViewport[] = "inert-visual-viewport"; |
| 599 | 599 |
| 600 // Run the GPU process as a thread in the browser process. | 600 // Run the GPU process as a thread in the browser process. |
| 601 const char kInProcessGPU[] = "in-process-gpu"; | 601 const char kInProcessGPU[] = "in-process-gpu"; |
| 602 | 602 |
| 603 // Overrides the timeout, in seconds, that a child process waits for a | 603 // Overrides the timeout, in seconds, that a child process waits for a |
| 604 // connection from the browser before killing itself. | 604 // connection from the browser before killing itself. |
| 605 const char kIPCConnectionTimeout[] = "ipc-connection-timeout"; | 605 const char kIPCConnectionTimeout[] = "ipc-connection-timeout"; |
| 606 | 606 |
| 607 // Chrome is running in Mash. |
| 608 const char kIsRunningInMash[] = "is-running-in-mash"; |
| 609 |
| 607 // Disable latest shipping ECMAScript 6 features. | 610 // Disable latest shipping ECMAScript 6 features. |
| 608 const char kDisableJavaScriptHarmonyShipping[] = | 611 const char kDisableJavaScriptHarmonyShipping[] = |
| 609 "disable-javascript-harmony-shipping"; | 612 "disable-javascript-harmony-shipping"; |
| 610 | 613 |
| 611 // Enables experimental Harmony (ECMAScript 6) features. | 614 // Enables experimental Harmony (ECMAScript 6) features. |
| 612 const char kJavaScriptHarmony[] = "javascript-harmony"; | 615 const char kJavaScriptHarmony[] = "javascript-harmony"; |
| 613 | 616 |
| 614 // Enables experimental WebAssembly. | 617 // Enables experimental WebAssembly. |
| 615 const char kEnableWasm[] = "enable-wasm"; | 618 const char kEnableWasm[] = "enable-wasm"; |
| 616 | 619 |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1057 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1060 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1058 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1061 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1059 | 1062 |
| 1060 // Specifies the testcase used by the IPC fuzzer. | 1063 // Specifies the testcase used by the IPC fuzzer. |
| 1061 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1064 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1062 #endif | 1065 #endif |
| 1063 | 1066 |
| 1064 // Don't dump stuff here, follow the same order as the header. | 1067 // Don't dump stuff here, follow the same order as the header. |
| 1065 | 1068 |
| 1066 } // namespace switches | 1069 } // namespace switches |
| OLD | NEW |