diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-21 00:05:21 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-21 00:05:21 +0000 |
commit | 3604e85c38ea42579316c4123f38b2d7d9a6eec1 (patch) | |
tree | 6c768f754f8a1244f628f884876e7207d52ed2b1 /net/disk_cache/backend_impl.cc | |
parent | 6a45945266d968f8d1523fecbf85e8f31491b8a3 (diff) | |
download | chromium_src-3604e85c38ea42579316c4123f38b2d7d9a6eec1.zip chromium_src-3604e85c38ea42579316c4123f38b2d7d9a6eec1.tar.gz chromium_src-3604e85c38ea42579316c4123f38b2d7d9a6eec1.tar.bz2 |
Disk cache: Implement asynchronous IO for Posix.
BUG=16507
TEST=Unittests
Review URL: http://codereview.chromium.org/171085
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23919 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache/backend_impl.cc')
-rw-r--r-- | net/disk_cache/backend_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/disk_cache/backend_impl.cc b/net/disk_cache/backend_impl.cc index 5af790f..a33697b 100644 --- a/net/disk_cache/backend_impl.cc +++ b/net/disk_cache/backend_impl.cc @@ -345,7 +345,7 @@ BackendImpl::~BackendImpl() { timer_.Stop(); - WaitForPendingIO(&num_pending_io_); + File::WaitForPendingIO(&num_pending_io_); DCHECK(!num_refs_); } |