| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 // connect and host resolver in a direct connection, and the CONNECT in an http | 715 // connect and host resolver in a direct connection, and the CONNECT in an http |
| 716 // proxy connection, and the endpoint host in a SOCKS proxy connection). | 716 // proxy connection, and the endpoint host in a SOCKS proxy connection). |
| 717 const char kHostRules[] = "host-rules"; | 717 const char kHostRules[] = "host-rules"; |
| 718 | 718 |
| 719 // The maximum number of concurrent host resolve requests (i.e. DNS) to allow. | 719 // The maximum number of concurrent host resolve requests (i.e. DNS) to allow. |
| 720 const char kHostResolverParallelism[] = "host-resolver-parallelism"; | 720 const char kHostResolverParallelism[] = "host-resolver-parallelism"; |
| 721 | 721 |
| 722 // These mappings only apply to the host resolver. | 722 // These mappings only apply to the host resolver. |
| 723 const char kHostResolverRules[] = "host-resolver-rules"; | 723 const char kHostResolverRules[] = "host-resolver-rules"; |
| 724 | 724 |
| 725 // Ignores GPU blacklist. |
| 726 const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist"; |
| 727 |
| 725 // Perform importing from another browser. The value associated with this | 728 // Perform importing from another browser. The value associated with this |
| 726 // setting encodes the target browser and what items to import. | 729 // setting encodes the target browser and what items to import. |
| 727 const char kImport[] = "import"; | 730 const char kImport[] = "import"; |
| 728 | 731 |
| 729 // Perform bookmark importing from an HTML file. The value associated with this | 732 // Perform bookmark importing from an HTML file. The value associated with this |
| 730 // setting encodes the file path. It may be used jointly with kImport. | 733 // setting encodes the file path. It may be used jointly with kImport. |
| 731 const char kImportFromFile[] = "import-from-file"; | 734 const char kImportFromFile[] = "import-from-file"; |
| 732 | 735 |
| 733 // Runs plugins inside the renderer process | 736 // Runs plugins inside the renderer process |
| 734 const char kInProcessPlugins[] = "in-process-plugins"; | 737 const char kInProcessPlugins[] = "in-process-plugins"; |
| (...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1371 | 1374 |
| 1372 // ----------------------------------------------------------------------------- | 1375 // ----------------------------------------------------------------------------- |
| 1373 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1376 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1374 // | 1377 // |
| 1375 // You were going to just dump your switches here, weren't you? Instead, | 1378 // You were going to just dump your switches here, weren't you? Instead, |
| 1376 // please put them in alphabetical order above, or in order inside the | 1379 // please put them in alphabetical order above, or in order inside the |
| 1377 // appropriate ifdef at the bottom. The order should match the header. | 1380 // appropriate ifdef at the bottom. The order should match the header. |
| 1378 // ----------------------------------------------------------------------------- | 1381 // ----------------------------------------------------------------------------- |
| 1379 | 1382 |
| 1380 } // namespace switches | 1383 } // namespace switches |
| OLD | NEW |