| Index: net/disk_cache/in_flight_backend_io.h
|
| diff --git a/net/disk_cache/in_flight_backend_io.h b/net/disk_cache/in_flight_backend_io.h
|
| index 89fe3c16738843986dbc76ea54d37bccbf142098..659a33af15ff352b3b01330b77902ad69b82afb2 100644
|
| --- a/net/disk_cache/in_flight_backend_io.h
|
| +++ b/net/disk_cache/in_flight_backend_io.h
|
| @@ -103,7 +103,7 @@ class BackendIO : public BackgroundIO {
|
| OP_IS_READY
|
| };
|
|
|
| - ~BackendIO();
|
| + virtual ~BackendIO();
|
|
|
| void ExecuteBackendOperation();
|
| void ExecuteEntryOperation();
|
| @@ -139,7 +139,7 @@ class InFlightBackendIO : public InFlightIO {
|
| public:
|
| InFlightBackendIO(BackendImpl* backend,
|
| base::MessageLoopProxy* background_thread);
|
| - ~InFlightBackendIO();
|
| + virtual ~InFlightBackendIO();
|
|
|
| // The operations we proxy:
|
| void Init(net::CompletionCallback* callback);
|
|
|