| Index: chrome/browser/system_monitor/test_removable_storage_notifications.cc
|
| diff --git a/chrome/browser/system_monitor/test_removable_storage_notifications.cc b/chrome/browser/system_monitor/test_removable_storage_notifications.cc
|
| index 1a6c3a611e15ae0875d3d50f8f0f0a230555a02f..5da729bc1a18f2c76a704fb6f95bba9ec01af873 100644
|
| --- a/chrome/browser/system_monitor/test_removable_storage_notifications.cc
|
| +++ b/chrome/browser/system_monitor/test_removable_storage_notifications.cc
|
| @@ -32,5 +32,21 @@ bool TestRemovableStorageNotifications::GetMTPStorageInfoFromDeviceId(
|
| }
|
| #endif
|
|
|
| +void TestRemovableStorageNotifications::ProcessAttach(
|
| + const std::string& id,
|
| + const string16& name,
|
| + const FilePath::StringType& location) {
|
| + receiver()->ProcessAttach(id, name, location);
|
| +}
|
| +
|
| +void TestRemovableStorageNotifications::ProcessDetach(const std::string& id) {
|
| + receiver()->ProcessDetach(id);
|
| +}
|
| +
|
| +RemovableStorageNotifications::Receiver*
|
| +TestRemovableStorageNotifications::receiver() const {
|
| + return RemovableStorageNotifications::receiver();
|
| +}
|
| +
|
| } // namespace test
|
| } // namespace chrome
|
|
|