| Index: components/storage_monitor/media_transfer_protocol_device_observer_linux.h
|
| diff --git a/components/storage_monitor/media_transfer_protocol_device_observer_linux.h b/components/storage_monitor/media_transfer_protocol_device_observer_linux.h
|
| index 3b9d122764dc5940ab9e16f8508f1ae8027356af..50467adf3ad1f7a7e84916f044ee4e6bc37a9201 100644
|
| --- a/components/storage_monitor/media_transfer_protocol_device_observer_linux.h
|
| +++ b/components/storage_monitor/media_transfer_protocol_device_observer_linux.h
|
| @@ -37,7 +37,7 @@ class MediaTransferProtocolDeviceObserverLinux
|
| MediaTransferProtocolDeviceObserverLinux(
|
| StorageMonitor::Receiver* receiver,
|
| device::MediaTransferProtocolManager* mtp_manager);
|
| - virtual ~MediaTransferProtocolDeviceObserverLinux();
|
| + ~MediaTransferProtocolDeviceObserverLinux() override;
|
|
|
| // Finds the storage that contains |path| and populates |storage_info|.
|
| // Returns false if unable to find the storage.
|
| @@ -56,8 +56,8 @@ class MediaTransferProtocolDeviceObserverLinux
|
|
|
| // device::MediaTransferProtocolManager::Observer implementation.
|
| // Exposed for unit tests.
|
| - virtual void StorageChanged(bool is_attached,
|
| - const std::string& storage_name) override;
|
| + void StorageChanged(bool is_attached,
|
| + const std::string& storage_name) override;
|
|
|
| private:
|
| // Mapping of storage location and mtp storage info object.
|
|
|