| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 const char kWebWorkerProcessPerCore[] = "web-worker-process-per-core"; | 651 const char kWebWorkerProcessPerCore[] = "web-worker-process-per-core"; |
| 652 | 652 |
| 653 // Causes workers to run together in one process, depending on their domains. | 653 // Causes workers to run together in one process, depending on their domains. |
| 654 // Note this is duplicated in webworkerclient_impl.cc | 654 // Note this is duplicated in webworkerclient_impl.cc |
| 655 const char kWebWorkerShareProcesses[] = "web-worker-share-processes"; | 655 const char kWebWorkerShareProcesses[] = "web-worker-share-processes"; |
| 656 | 656 |
| 657 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is | 657 // Use WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is |
| 658 // to use Chromium's network stack to fetch, and V8 to evaluate. | 658 // to use Chromium's network stack to fetch, and V8 to evaluate. |
| 659 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 659 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
| 660 | 660 |
| 661 // On Windows only: use the old WinInet-based ftp implemetation. | |
| 662 const char kWininetFtp[] = "wininet-ftp"; | |
| 663 | |
| 664 // Causes the process to run as a worker subprocess. | 661 // Causes the process to run as a worker subprocess. |
| 665 const char kWorkerProcess[] = "worker"; | 662 const char kWorkerProcess[] = "worker"; |
| 666 | 663 |
| 667 // Causes the worker process to display a dialog on launch | 664 // Causes the worker process to display a dialog on launch |
| 668 const char kWorkerStartupDialog[] = "worker-startup-dialog"; | 665 const char kWorkerStartupDialog[] = "worker-startup-dialog"; |
| 669 | 666 |
| 670 // The prefix used when starting the zygote process. (i.e. 'gdb --args') | 667 // The prefix used when starting the zygote process. (i.e. 'gdb --args') |
| 671 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; | 668 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; |
| 672 | 669 |
| 673 // Causes the process to run as a renderer zygote. | 670 // Causes the process to run as a renderer zygote. |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 | 733 |
| 737 // ----------------------------------------------------------------------------- | 734 // ----------------------------------------------------------------------------- |
| 738 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 735 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 739 // | 736 // |
| 740 // You were going to just dump your switches here, weren't you? Instead, | 737 // You were going to just dump your switches here, weren't you? Instead, |
| 741 // please put them in alphabetical order above, or in order inside the | 738 // please put them in alphabetical order above, or in order inside the |
| 742 // appropriate ifdef at the bottom. The order should match the header. | 739 // appropriate ifdef at the bottom. The order should match the header. |
| 743 // ----------------------------------------------------------------------------- | 740 // ----------------------------------------------------------------------------- |
| 744 | 741 |
| 745 } // namespace switches | 742 } // namespace switches |
| OLD | NEW |