| Index: chrome/browser/media_gallery/media_file_system_registry_unittest.cc
|
| diff --git a/chrome/browser/media_gallery/media_file_system_registry_unittest.cc b/chrome/browser/media_gallery/media_file_system_registry_unittest.cc
|
| index 48b83d250bfbc31c1bfb387c95e7bda93acad43d..c1d92d75b88c84572ee7c08a99ef286746725d77 100644
|
| --- a/chrome/browser/media_gallery/media_file_system_registry_unittest.cc
|
| +++ b/chrome/browser/media_gallery/media_file_system_registry_unittest.cc
|
| @@ -362,12 +362,11 @@ class MediaFileSystemRegistryTest : public ChromeRenderViewHostTestHarness {
|
| void ProcessAttach(const std::string& id,
|
| const string16& name,
|
| const FilePath::StringType& location) {
|
| - RemovableStorageNotifications::GetInstance()->ProcessAttach(
|
| - id, name, location);
|
| + notifications_.ProcessAttach(id, name, location);
|
| }
|
|
|
| void ProcessDetach(const std::string& id) {
|
| - RemovableStorageNotifications::GetInstance()->ProcessDetach(id);
|
| + notifications_.ProcessDetach(id);
|
| }
|
|
|
| protected:
|
|
|