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