summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-28 15:49:08 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-28 15:49:08 +0000
commit4d049745be6e260db99bbb9440f6f133651db071 (patch)
treef248233bd0c55e732f5d59148062824021ae74c9
parent160f29adc7b6c1fa99f03331aa0bde9334be9578 (diff)
downloadchromium_src-4d049745be6e260db99bbb9440f6f133651db071.zip
chromium_src-4d049745be6e260db99bbb9440f6f133651db071.tar.gz
chromium_src-4d049745be6e260db99bbb9440f6f133651db071.tar.bz2
Mac: turn on file access checks for the IO thread.
BUG=60211 TEST=trybots Review URL: http://codereview.chromium.org/4097010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64249 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/io_thread.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
index 61d8848..f4f92ba 100644
--- a/chrome/browser/io_thread.cc
+++ b/chrome/browser/io_thread.cc
@@ -233,7 +233,7 @@ net::ProxyScriptFetcher* IOThread::CreateAndRegisterProxyScriptFetcher(
}
void IOThread::Init() {
-#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
+#if (defined(OS_LINUX) && !defined(OS_CHROMEOS)) || defined(OS_MACOSX)
// TODO(evan): test and enable this on all platforms.
// Though this thread is called the "IO" thread, it actually just routes
// messages around; it shouldn't be allowed to perform any blocking disk I/O.