| Index: chrome/browser/system_monitor/removable_storage_notifications_unittest.cc
|
| diff --git a/chrome/browser/system_monitor/removable_storage_notifications_unittest.cc b/chrome/browser/system_monitor/removable_storage_notifications_unittest.cc
|
| index ccfbfe5ef67715dcfb27a721e28cbde18c5adc2b..ce771049ebff3a18577fec35f16c1a6ec72aa9bf 100644
|
| --- a/chrome/browser/system_monitor/removable_storage_notifications_unittest.cc
|
| +++ b/chrome/browser/system_monitor/removable_storage_notifications_unittest.cc
|
| @@ -39,11 +39,11 @@ class TestStorageNotifications : public RemovableStorageNotifications {
|
| void ProcessAttach(const std::string& id,
|
| const string16& name,
|
| const FilePath::StringType& location) {
|
| - RemovableStorageNotifications::ProcessAttach(id, name, location);
|
| + receiver_->ProcessAttach(StorageInfo(id, name, location));
|
| }
|
|
|
| void ProcessDetach(const std::string& id) {
|
| - RemovableStorageNotifications::ProcessDetach(id);
|
| + receiver_->ProcessDetach(id);
|
| }
|
| };
|
|
|
|
|