Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: content/public/common/content_switches.cc

Issue 2200403002: [asm.js] [wasm] Adds a UI flag for enabling the Wasm backend for Asm.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addresses comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/render_process_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/render_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698