| 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 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 | 772 |
| 773 // These mappings only apply to the host resolver. | 773 // These mappings only apply to the host resolver. |
| 774 const char kHostResolverRules[] = "host-resolver-rules"; | 774 const char kHostResolverRules[] = "host-resolver-rules"; |
| 775 | 775 |
| 776 // Takes the JSON-formatted HSTS specification and loads it as if it were a | 776 // Takes the JSON-formatted HSTS specification and loads it as if it were a |
| 777 // preloaded HSTS entry. Takes precedence over both website-specified rules and | 777 // preloaded HSTS entry. Takes precedence over both website-specified rules and |
| 778 // built-in rules. The JSON format is the same as that persisted in | 778 // built-in rules. The JSON format is the same as that persisted in |
| 779 // <profile_dir>/Default/TransportSecurity | 779 // <profile_dir>/Default/TransportSecurity |
| 780 const char kHstsHosts[] = "hsts-hosts"; | 780 const char kHstsHosts[] = "hsts-hosts"; |
| 781 | 781 |
| 782 // Ignores GPU blacklist. | |
| 783 const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist"; | |
| 784 | |
| 785 // Performs importing from another browser. The value associated with this | 782 // Performs importing from another browser. The value associated with this |
| 786 // setting encodes the target browser and what items to import. | 783 // setting encodes the target browser and what items to import. |
| 787 const char kImport[] = "import"; | 784 const char kImport[] = "import"; |
| 788 | 785 |
| 789 // Performs bookmark importing from an HTML file. The value associated with | 786 // Performs bookmark importing from an HTML file. The value associated with |
| 790 // this setting encodes the file path. It may be used jointly with kImport. | 787 // this setting encodes the file path. It may be used jointly with kImport. |
| 791 const char kImportFromFile[] = "import-from-file"; | 788 const char kImportFromFile[] = "import-from-file"; |
| 792 | 789 |
| 793 // Causes the browser to launch directly in incognito mode. | 790 // Causes the browser to launch directly in incognito mode. |
| 794 const char kIncognito[] = "incognito"; | 791 const char kIncognito[] = "incognito"; |
| (...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1577 | 1574 |
| 1578 // ----------------------------------------------------------------------------- | 1575 // ----------------------------------------------------------------------------- |
| 1579 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1576 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1580 // | 1577 // |
| 1581 // You were going to just dump your switches here, weren't you? Instead, please | 1578 // You were going to just dump your switches here, weren't you? Instead, please |
| 1582 // put them in alphabetical order above, or in order inside the appropriate | 1579 // put them in alphabetical order above, or in order inside the appropriate |
| 1583 // ifdef at the bottom. The order should match the header. | 1580 // ifdef at the bottom. The order should match the header. |
| 1584 // ----------------------------------------------------------------------------- | 1581 // ----------------------------------------------------------------------------- |
| 1585 | 1582 |
| 1586 } // namespace switches | 1583 } // namespace switches |
| OLD | NEW |