diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-05 19:54:14 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-05 19:54:14 +0000 |
commit | 53a17e24bba43fb1c6b11303b02cce4dfaa2b65d (patch) | |
tree | 3ff7fb87980d94aef7efd72fde11465a2211d529 /chrome/common | |
parent | ff268ff5dc3e23701eadda8f72a3f25a56e1797c (diff) | |
download | chromium_src-53a17e24bba43fb1c6b11303b02cce4dfaa2b65d.zip chromium_src-53a17e24bba43fb1c6b11303b02cce4dfaa2b65d.tar.gz chromium_src-53a17e24bba43fb1c6b11303b02cce4dfaa2b65d.tar.bz2 |
net: remove forced renegotiation checks
We lost this battle. We had to step back from requirement the renegotiation
extension, even on sites which we know support it, because of the number of
MITM proxies.
Since there doesn't seem to be any way forward, this change removes the code.
BUG=55410
TEST=compiles
Review URL: http://codereview.chromium.org/6792032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80513 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 6 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index b3231f73..c6b099a 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -24,12 +24,6 @@ const char kAllowFileAccess[] = "allow-file-access"; // Don't block outdated plugins. const char kAllowOutdatedPlugins[] = "allow-outdated-plugins"; -// Disable checking of the renegotiation extension and any future checks over -// and above what a "traditional" SSL stack might do. This has been requested -// in order to support some web development tools that intercept SSL -// connections. -const char kAllowSSLMITMProxies[] = "allow-ssl-mitm-proxies"; - // Allows injecting extensions and user scripts on the extensions // gallery site. Normally prevented for security reasons, but can be // useful for automation testing of the gallery. diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index f380f18..27c473a 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -26,7 +26,6 @@ namespace switches { extern const char kActivateOnLaunch[]; extern const char kAllowFileAccess[]; extern const char kAllowOutdatedPlugins[]; -extern const char kAllowSSLMITMProxies[]; extern const char kAllowScriptingGallery[]; extern const char kAlwaysAuthorizePlugins[]; extern const char kAlwaysEnableDevTools[]; |