| Index: net/disk_cache/blockfile/backend_impl.cc
|
| diff --git a/net/disk_cache/blockfile/backend_impl.cc b/net/disk_cache/blockfile/backend_impl.cc
|
| index bcac374ed289cd76f333085a21988ee866ec0d7e..20995b711ab2bddb1ded021804d1616b39853357 100644
|
| --- a/net/disk_cache/blockfile/backend_impl.cc
|
| +++ b/net/disk_cache/blockfile/backend_impl.cc
|
| @@ -1254,13 +1254,13 @@ class BackendImpl::IteratorImpl : public Backend::Iterator {
|
| iterator_(new Rankings::Iterator()) {
|
| }
|
|
|
| - virtual ~IteratorImpl() {
|
| + ~IteratorImpl() override {
|
| if (background_queue_)
|
| background_queue_->EndEnumeration(iterator_.Pass());
|
| }
|
|
|
| - virtual int OpenNextEntry(Entry** next_entry,
|
| - const net::CompletionCallback& callback) override {
|
| + int OpenNextEntry(Entry** next_entry,
|
| + const net::CompletionCallback& callback) override {
|
| if (!background_queue_)
|
| return net::ERR_FAILED;
|
| background_queue_->OpenNextEntry(iterator_.get(), next_entry, callback);
|
|
|