| 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 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 // Chrome is running in Mash. | 619 // Chrome is running in Mash. |
| 620 const char kIsRunningInMash[] = "is-running-in-mash"; | 620 const char kIsRunningInMash[] = "is-running-in-mash"; |
| 621 | 621 |
| 622 // Disable latest shipping ECMAScript 6 features. | 622 // Disable latest shipping ECMAScript 6 features. |
| 623 const char kDisableJavaScriptHarmonyShipping[] = | 623 const char kDisableJavaScriptHarmonyShipping[] = |
| 624 "disable-javascript-harmony-shipping"; | 624 "disable-javascript-harmony-shipping"; |
| 625 | 625 |
| 626 // Enables experimental Harmony (ECMAScript 6) features. | 626 // Enables experimental Harmony (ECMAScript 6) features. |
| 627 const char kJavaScriptHarmony[] = "javascript-harmony"; | 627 const char kJavaScriptHarmony[] = "javascript-harmony"; |
| 628 | 628 |
| 629 // Enables experimental Asm.js to WebAssembly. |
| 630 const char kEnableAsmWasm[] = "enable-asm-wasm"; |
| 631 |
| 629 // Enables experimental WebAssembly. | 632 // Enables experimental WebAssembly. |
| 630 const char kEnableWasm[] = "enable-wasm"; | 633 const char kEnableWasm[] = "enable-wasm"; |
| 631 | 634 |
| 632 // Specifies the flags passed to JS engine | 635 // Specifies the flags passed to JS engine |
| 633 const char kJavaScriptFlags[] = "js-flags"; | 636 const char kJavaScriptFlags[] = "js-flags"; |
| 634 | 637 |
| 635 // Logs GPU control list decisions when enforcing blacklist rules. | 638 // Logs GPU control list decisions when enforcing blacklist rules. |
| 636 const char kLogGpuControlListDecisions[] = "log-gpu-control-list-decisions"; | 639 const char kLogGpuControlListDecisions[] = "log-gpu-control-list-decisions"; |
| 637 | 640 |
| 638 // Sets the minimum log level. Valid values are from 0 to 3: | 641 // Sets the minimum log level. Valid values are from 0 to 3: |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1079 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1077 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1080 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1078 | 1081 |
| 1079 // Specifies the testcase used by the IPC fuzzer. | 1082 // Specifies the testcase used by the IPC fuzzer. |
| 1080 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1083 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1081 #endif | 1084 #endif |
| 1082 | 1085 |
| 1083 // Don't dump stuff here, follow the same order as the header. | 1086 // Don't dump stuff here, follow the same order as the header. |
| 1084 | 1087 |
| 1085 } // namespace switches | 1088 } // namespace switches |
| OLD | NEW |