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