summaryrefslogtreecommitdiffstats
path: root/net/url_request/url_request_file_job.cc
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-23 04:09:46 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-23 04:09:46 +0000
commitbd25f1d16e9f9c8f94a6e761719d7239028447c8 (patch)
tree94c4ea7e47626540cf863b359dd9d8e58348dd30 /net/url_request/url_request_file_job.cc
parenta64a12806c27b34f686cf66700da56b812a9c199 (diff)
downloadchromium_src-bd25f1d16e9f9c8f94a6e761719d7239028447c8.zip
chromium_src-bd25f1d16e9f9c8f94a6e761719d7239028447c8.tar.gz
chromium_src-bd25f1d16e9f9c8f94a6e761719d7239028447c8.tar.bz2
Revert 63600 - Thread IO safety: annotate file_util, and block IO thread from doing IO
Reverting because this breaks the ChromiumOS (dbg) builder. - Mark functions in file_util_posix as requiring permission to perform disk actions. - Mark the IO thread as disallowed from performing disk actions. - Temporarily work around the protections in places where we currently have bugs. BUG=59847,59849,60207,60211 TEST=no dchecks in debug builds Review URL: http://codereview.chromium.org/3872002 TBR=evan@chromium.org Review URL: http://codereview.chromium.org/3983005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63630 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request/url_request_file_job.cc')
-rw-r--r--net/url_request/url_request_file_job.cc10
1 files changed, 1 insertions, 9 deletions
diff --git a/net/url_request/url_request_file_job.cc b/net/url_request/url_request_file_job.cc
index f9c6559..8c282ff 100644
--- a/net/url_request/url_request_file_job.cc
+++ b/net/url_request/url_request_file_job.cc
@@ -23,7 +23,6 @@
#include "base/message_loop.h"
#include "base/platform_file.h"
#include "base/string_util.h"
-#include "base/thread_restrictions.h"
#include "build/build_config.h"
#include "googleurl/src/gurl.h"
#include "net/base/io_buffer.h"
@@ -129,15 +128,8 @@ void URLRequestFileJob::Start() {
return;
}
#endif
-
- // URL requests should not block on the disk!
- // http://code.google.com/p/chromium/issues/detail?id=59849
- bool exists;
base::PlatformFileInfo file_info;
- {
- base::ThreadRestrictions::ScopedAllowIO allow_io;
- exists = file_util::GetFileInfo(file_path_, &file_info);
- }
+ bool exists = file_util::GetFileInfo(file_path_, &file_info);
// Continue asynchronously.
MessageLoop::current()->PostTask(FROM_HERE, NewRunnableMethod(