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

Unified Diff: net/base/ssl_config_service_win.cc

Issue 4431001: Revert 64960 - Turn on file access checks on Win.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/chrome_version_info.cc ('k') | net/proxy/proxy_config_service_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « chrome/common/chrome_version_info.cc ('k') | net/proxy/proxy_config_service_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698