| Index: components/storage_monitor/test_storage_monitor.h
|
| diff --git a/components/storage_monitor/test_storage_monitor.h b/components/storage_monitor/test_storage_monitor.h
|
| index de80e0135c0b3abcd102512c4420c14205ef8b80..ec29b8c66c0d7f73fac35625cd39805dea4e4fe6 100644
|
| --- a/components/storage_monitor/test_storage_monitor.h
|
| +++ b/components/storage_monitor/test_storage_monitor.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef COMPONENTS_STORAGE_MONITOR_TEST_STORAGE_MONITOR_H_
|
| #define COMPONENTS_STORAGE_MONITOR_TEST_STORAGE_MONITOR_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "build/build_config.h"
|
| @@ -73,7 +74,7 @@ class TestStorageMonitor : public StorageMonitor {
|
| std::vector<base::FilePath> removable_paths_;
|
|
|
| #if defined(OS_LINUX)
|
| - scoped_ptr<device::MediaTransferProtocolManager>
|
| + std::unique_ptr<device::MediaTransferProtocolManager>
|
| media_transfer_protocol_manager_;
|
| #endif
|
| };
|
|
|