| Index: net/base/ssl_config_service_win.cc
|
| diff --git a/net/base/ssl_config_service_win.cc b/net/base/ssl_config_service_win.cc
|
| index debea7d0cc51827bd994f7b1257c550ede3ce5b8..d4153c3c7d002f4c6efa7a0edb004a7b0d36f156 100644
|
| --- a/net/base/ssl_config_service_win.cc
|
| +++ b/net/base/ssl_config_service_win.cc
|
| @@ -82,6 +82,13 @@ bool SSLConfigServiceWin::GetSSLConfigNow(SSLConfig* config) {
|
| config->tls1_enabled = ((protocols & TLS1) != 0);
|
| SSLConfigService::SetSSLConfigFlags(config);
|
|
|
| + // TODO(rsleevi): Possibly respect the registry keys defined in
|
| + // http://support.microsoft.com/kb/245030 (pre-Vista) or
|
| + // http://msdn.microsoft.com/en-us/library/bb870930(VS.85).aspx (post-Vista).
|
| + // Currently, these values are respected implicitly when using
|
| + // SSLClientSocketWin, but they do not propogate to SSLClientSocketNSS
|
| + // because we're not currently translating the keys.
|
| +
|
| return true;
|
| }
|
|
|
|
|