Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 7462008: Add a preference and command-line option to disable SSL/TLS cipher suites (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 // List of SSL cipher suites to disable.
battre 2011/07/20 11:16:30 Nit: "Comma separated list"?
116 const char kCipherSuiteBlacklist[ ] = "cipher-suite-blacklist";
battre 2011/07/20 11:16:30 nit: space in [ ]
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 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after
1230 1233
1231 // ----------------------------------------------------------------------------- 1234 // -----------------------------------------------------------------------------
1232 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1235 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1233 // 1236 //
1234 // You were going to just dump your switches here, weren't you? Instead, 1237 // You were going to just dump your switches here, weren't you? Instead,
1235 // please put them in alphabetical order above, or in order inside the 1238 // please put them in alphabetical order above, or in order inside the
1236 // appropriate ifdef at the bottom. The order should match the header. 1239 // appropriate ifdef at the bottom. The order should match the header.
1237 // ----------------------------------------------------------------------------- 1240 // -----------------------------------------------------------------------------
1238 1241
1239 } // namespace switches 1242 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698