Index: net/base/ssl_config_service_win.cc |
=================================================================== |
--- net/base/ssl_config_service_win.cc (revision 64973) |
+++ net/base/ssl_config_service_win.cc (working copy) |
@@ -4,7 +4,6 @@ |
#include "net/base/ssl_config_service_win.h" |
-#include "base/thread_restrictions.h" |
#include "base/win/registry.h" |
using base::TimeDelta; |
@@ -60,9 +59,6 @@ |
// static |
bool SSLConfigServiceWin::GetSSLConfigNow(SSLConfig* config) { |
- // This registry access goes to disk and will slow down the IO thread. |
- // http://crbug.com/61455 |
- base::ThreadRestrictions::ScopedAllowIO allow_io; |
RegKey internet_settings; |
if (!internet_settings.Open(HKEY_CURRENT_USER, kInternetSettingsSubKeyName, |
KEY_READ)) |
@@ -87,8 +83,6 @@ |
// static |
void SSLConfigServiceWin::SetRevCheckingEnabled(bool enabled) { |
- // This registry access goes to disk and will slow down the IO thread. |
- // http://crbug.com/61455 |
DWORD value = enabled; |
RegKey internet_settings(HKEY_CURRENT_USER, kInternetSettingsSubKeyName, |
KEY_WRITE); |
@@ -114,8 +108,6 @@ |
// static |
void SSLConfigServiceWin::SetSSLVersionEnabled(int version, bool enabled) { |
- // This registry access goes to disk and will slow down the IO thread. |
- // http://crbug.com/61455 |
RegKey internet_settings(HKEY_CURRENT_USER, kInternetSettingsSubKeyName, |
KEY_READ | KEY_WRITE); |
DWORD value; |