| Index: net/disk_cache/in_flight_backend_io.cc
|
| diff --git a/net/disk_cache/in_flight_backend_io.cc b/net/disk_cache/in_flight_backend_io.cc
|
| index ffd326aeec2beaf50acb4dd49ab810e8cd9b8cff..25d39a5bbf89746aa5a01ec5627b20b53bc083c3 100644
|
| --- a/net/disk_cache/in_flight_backend_io.cc
|
| +++ b/net/disk_cache/in_flight_backend_io.cc
|
| @@ -398,6 +398,13 @@ void InFlightBackendIO::OpenNextEntry(void** iter, Entry** next_entry,
|
| PostOperation(operation);
|
| }
|
|
|
| +void InFlightBackendIO::OpenNextEntry(void** iter, Entry** next_entry,
|
| + const net::CompletionCallback& callback) {
|
| + scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
|
| + operation->OpenNextEntry(iter, next_entry);
|
| + PostOperation(operation);
|
| +}
|
| +
|
| void InFlightBackendIO::OpenPrevEntry(void** iter, Entry** prev_entry,
|
| OldCompletionCallback* callback) {
|
| scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
|
|
|