| Index: net/disk_cache/file_posix.cc
|
| diff --git a/net/disk_cache/file_posix.cc b/net/disk_cache/file_posix.cc
|
| index c334f28362b3d1c4692be5e2dfcb0383fcb4f7bd..5e7e7645ad89b61807410ab0ade5fbaa435ced28 100644
|
| --- a/net/disk_cache/file_posix.cc
|
| +++ b/net/disk_cache/file_posix.cc
|
| @@ -118,7 +118,7 @@ void FileInFlightIO::PostRead(disk_cache::File *file, void* buf, size_t buf_len,
|
|
|
| base::WorkerPool::PostTask(FROM_HERE,
|
| base::Bind(&FileBackgroundIO::Read, operation.get()), true);
|
| - OnOperationPosted(operation);
|
| + OnOperationPosted(operation.get());
|
| }
|
|
|
| void FileInFlightIO::PostWrite(disk_cache::File* file, const void* buf,
|
| @@ -130,7 +130,7 @@ void FileInFlightIO::PostWrite(disk_cache::File* file, const void* buf,
|
|
|
| base::WorkerPool::PostTask(FROM_HERE,
|
| base::Bind(&FileBackgroundIO::Write, operation.get()), true);
|
| - OnOperationPosted(operation);
|
| + OnOperationPosted(operation.get());
|
| }
|
|
|
| // Runs on the IO thread.
|
|
|