| Index: components/storage_monitor/storage_monitor.cc
|
| diff --git a/components/storage_monitor/storage_monitor.cc b/components/storage_monitor/storage_monitor.cc
|
| index cd6bfae51327366d1c0b01d807b8126cb5fbe13a..f82995d81a7d57accdfce3963522ab9c344da09d 100644
|
| --- a/components/storage_monitor/storage_monitor.cc
|
| +++ b/components/storage_monitor/storage_monitor.cc
|
| @@ -25,13 +25,13 @@ class StorageMonitor::ReceiverImpl : public StorageMonitor::Receiver {
|
| explicit ReceiverImpl(StorageMonitor* notifications)
|
| : notifications_(notifications) {}
|
|
|
| - virtual ~ReceiverImpl() {}
|
| + ~ReceiverImpl() override {}
|
|
|
| - virtual void ProcessAttach(const StorageInfo& info) override;
|
| + void ProcessAttach(const StorageInfo& info) override;
|
|
|
| - virtual void ProcessDetach(const std::string& id) override;
|
| + void ProcessDetach(const std::string& id) override;
|
|
|
| - virtual void MarkInitialized() override;
|
| + void MarkInitialized() override;
|
|
|
| private:
|
| StorageMonitor* notifications_;
|
|
|