OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 const char kBrowserCrashTest[] = "crash-test"; | 105 const char kBrowserCrashTest[] = "crash-test"; |
106 | 106 |
107 // How often (in seconds) to check for updates. Should only be used for | 107 // How often (in seconds) to check for updates. Should only be used for |
108 // testing purposes. | 108 // testing purposes. |
109 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; | 109 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; |
110 | 110 |
111 // Tells chrome to load the specified version of chrome.dll on Windows. If | 111 // Tells chrome to load the specified version of chrome.dll on Windows. If |
112 // this version cannot be loaded, Chrome will exit. | 112 // this version cannot be loaded, Chrome will exit. |
113 const char kChromeVersion[] = "chrome-version"; | 113 const char kChromeVersion[] = "chrome-version"; |
114 | 114 |
| 115 // Comma-separated list of SSL cipher suites to disable. |
| 116 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist"; |
| 117 |
115 // Used with kCloudPrintFile. Tells Chrome to delete the file when | 118 // Used with kCloudPrintFile. Tells Chrome to delete the file when |
116 // finished displaying the print dialog. | 119 // finished displaying the print dialog. |
117 const char kCloudPrintDeleteFile[] = "cloud-print-delete-file"; | 120 const char kCloudPrintDeleteFile[] = "cloud-print-delete-file"; |
118 | 121 |
119 // Tells chrome to display the cloud print dialog and upload the | 122 // Tells chrome to display the cloud print dialog and upload the |
120 // specified file for printing. | 123 // specified file for printing. |
121 const char kCloudPrintFile[] = "cloud-print-file"; | 124 const char kCloudPrintFile[] = "cloud-print-file"; |
122 | 125 |
123 // Specifies the mime type to be used when uploading data from the | 126 // Specifies the mime type to be used when uploading data from the |
124 // file referenced by cloud-print-file. | 127 // file referenced by cloud-print-file. |
(...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1242 | 1245 |
1243 // ----------------------------------------------------------------------------- | 1246 // ----------------------------------------------------------------------------- |
1244 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1247 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1245 // | 1248 // |
1246 // You were going to just dump your switches here, weren't you? Instead, | 1249 // You were going to just dump your switches here, weren't you? Instead, |
1247 // please put them in alphabetical order above, or in order inside the | 1250 // please put them in alphabetical order above, or in order inside the |
1248 // appropriate ifdef at the bottom. The order should match the header. | 1251 // appropriate ifdef at the bottom. The order should match the header. |
1249 // ----------------------------------------------------------------------------- | 1252 // ----------------------------------------------------------------------------- |
1250 | 1253 |
1251 } // namespace switches | 1254 } // namespace switches |
OLD | NEW |