Index: net/disk_cache/file_posix.cc |
=================================================================== |
--- net/disk_cache/file_posix.cc (revision 70312) |
+++ net/disk_cache/file_posix.cc (working copy) |
@@ -7,7 +7,7 @@ |
#include <fcntl.h> |
#include "base/logging.h" |
-#include "base/worker_pool.h" |
+#include "base/threading/worker_pool.h" |
#include "net/disk_cache/disk_cache.h" |
#include "net/disk_cache/in_flight_io.h" |
@@ -113,7 +113,7 @@ |
new FileBackgroundIO(file, buf, buf_len, offset, callback, this)); |
file->AddRef(); // Balanced on OnOperationComplete() |
- WorkerPool::PostTask(FROM_HERE, |
+ base::WorkerPool::PostTask(FROM_HERE, |
NewRunnableMethod(operation.get(), &FileBackgroundIO::Read), true); |
OnOperationPosted(operation); |
} |
@@ -125,7 +125,7 @@ |
new FileBackgroundIO(file, buf, buf_len, offset, callback, this)); |
file->AddRef(); // Balanced on OnOperationComplete() |
- WorkerPool::PostTask(FROM_HERE, |
+ base::WorkerPool::PostTask(FROM_HERE, |
NewRunnableMethod(operation.get(), &FileBackgroundIO::Write), true); |
OnOperationPosted(operation); |
} |