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

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

Issue 14125003: Do not roll back to SSL 3.0 for Google properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup before sending for reviews. Created 7 years, 8 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
OLDNEW
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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 const char kDisableExtensionsHttpThrottling[] = 313 const char kDisableExtensionsHttpThrottling[] =
314 "disable-extensions-http-throttling"; 314 "disable-extensions-http-throttling";
315 315
316 // Disable mandatory enforcement of web_accessible_resources in extensions. 316 // Disable mandatory enforcement of web_accessible_resources in extensions.
317 const char kDisableExtensionsResourceWhitelist[] = 317 const char kDisableExtensionsResourceWhitelist[] =
318 "disable-extensions-resource-whitelist"; 318 "disable-extensions-resource-whitelist";
319 319
320 // Disables automatically making app run in full screen in force app mode. 320 // Disables automatically making app run in full screen in force app mode.
321 const char kDisableFullscreenApp[] = "disable-fullscreen-app"; 321 const char kDisableFullscreenApp[] = "disable-fullscreen-app";
322 322
323 // Disables enforcement of minimum SSL version for preloaded HSTS entries.
324 // For preloaded Google properties the minimum version is TLS 1.0.
325 // For others the minimum version is still SSL 3.0, i.e., it has no effect.
326 const char kDisableSSLVersionMinPreloaded[] =
327 "disable-ssl-version-min-preloaded";
wtc 2013/04/17 19:49:50 The CL's description says this option is --ssl-ver
thaidn_google 2013/04/17 22:16:07 I change it to --enable-ssl3-version-fallback, and
328
323 // Disable Instant extended API. 329 // Disable Instant extended API.
324 const char kDisableInstantExtendedAPI[] = "disable-instant-extended-api"; 330 const char kDisableInstantExtendedAPI[] = "disable-instant-extended-api";
325 331
326 // Disables improved SafeBrowsing download protection. 332 // Disables improved SafeBrowsing download protection.
327 const char kDisableImprovedDownloadProtection[] = 333 const char kDisableImprovedDownloadProtection[] =
328 "disable-improved-download-protection"; 334 "disable-improved-download-protection";
329 335
330 // Don't resolve hostnames to IPv6 addresses. This can be used when debugging 336 // Don't resolve hostnames to IPv6 addresses. This can be used when debugging
331 // issues relating to IPv6, but shouldn't otherwise be needed. Be sure to file 337 // issues relating to IPv6, but shouldn't otherwise be needed. Be sure to file
332 // bugs if something isn't working properly in the presence of IPv6. This flag 338 // bugs if something isn't working properly in the presence of IPv6. This flag
(...skipping 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1686 1692
1687 // ----------------------------------------------------------------------------- 1693 // -----------------------------------------------------------------------------
1688 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1694 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1689 // 1695 //
1690 // You were going to just dump your switches here, weren't you? Instead, please 1696 // You were going to just dump your switches here, weren't you? Instead, please
1691 // put them in alphabetical order above, or in order inside the appropriate 1697 // put them in alphabetical order above, or in order inside the appropriate
1692 // ifdef at the bottom. The order should match the header. 1698 // ifdef at the bottom. The order should match the header.
1693 // ----------------------------------------------------------------------------- 1699 // -----------------------------------------------------------------------------
1694 1700
1695 } // namespace switches 1701 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698