| 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 "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 // The list is of the following form: <id>[:<name>],[<id>[:<name>],...] | 647 // The list is of the following form: <id>[:<name>],[<id>[:<name>],...] |
| 648 const char kInstallSupervisedUserWhitelists[] = | 648 const char kInstallSupervisedUserWhitelists[] = |
| 649 "install-supervised-user-whitelists"; | 649 "install-supervised-user-whitelists"; |
| 650 | 650 |
| 651 // Marks a renderer as an Instant process. | 651 // Marks a renderer as an Instant process. |
| 652 const char kInstantProcess[] = "instant-process"; | 652 const char kInstantProcess[] = "instant-process"; |
| 653 | 653 |
| 654 // The URL for the interests API. | 654 // The URL for the interests API. |
| 655 const char kInterestsURL[] = "interests-url"; | 655 const char kInterestsURL[] = "interests-url"; |
| 656 | 656 |
| 657 // Disable latest shipping ECMAScript 6 features. | |
| 658 const char kDisableJavaScriptHarmonyShipping[] = | |
| 659 "disable-javascript-harmony-shipping"; | |
| 660 | |
| 661 // Enables experimental Harmony (ECMAScript 6) features. | |
| 662 const char kJavaScriptHarmony[] = "javascript-harmony"; | |
| 663 | |
| 664 // Enables experimental WebAssembly. | |
| 665 const char kEnableWasm[] = "enable-wasm"; | |
| 666 | |
| 667 // Dumps IPC messages sent from renderer processes to the browser process to | 657 // Dumps IPC messages sent from renderer processes to the browser process to |
| 668 // the given directory. Used primarily to gather samples for IPC fuzzing. | 658 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 669 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 659 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 670 | 660 |
| 671 // Used for testing - keeps browser alive after last browser window closes. | 661 // Used for testing - keeps browser alive after last browser window closes. |
| 672 const char kKeepAliveForTest[] = "keep-alive-for-test"; | 662 const char kKeepAliveForTest[] = "keep-alive-for-test"; |
| 673 | 663 |
| 674 // Enable Kiosk mode. | 664 // Enable Kiosk mode. |
| 675 const char kKioskMode[] = "kiosk"; | 665 const char kKioskMode[] = "kiosk"; |
| 676 | 666 |
| (...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1358 | 1348 |
| 1359 // ----------------------------------------------------------------------------- | 1349 // ----------------------------------------------------------------------------- |
| 1360 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1350 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1361 // | 1351 // |
| 1362 // You were going to just dump your switches here, weren't you? Instead, please | 1352 // You were going to just dump your switches here, weren't you? Instead, please |
| 1363 // put them in alphabetical order above, or in order inside the appropriate | 1353 // put them in alphabetical order above, or in order inside the appropriate |
| 1364 // ifdef at the bottom. The order should match the header. | 1354 // ifdef at the bottom. The order should match the header. |
| 1365 // ----------------------------------------------------------------------------- | 1355 // ----------------------------------------------------------------------------- |
| 1366 | 1356 |
| 1367 } // namespace switches | 1357 } // namespace switches |
| OLD | NEW |