| Index: chrome/browser/storage_monitor/storage_monitor_unittest.cc
|
| diff --git a/chrome/browser/storage_monitor/storage_monitor_unittest.cc b/chrome/browser/storage_monitor/storage_monitor_unittest.cc
|
| index f4164522c39cecdde81b3fed75932896d774b92b..1b5de12f1cd17db4a075b1167e86732df1583a01 100644
|
| --- a/chrome/browser/storage_monitor/storage_monitor_unittest.cc
|
| +++ b/chrome/browser/storage_monitor/storage_monitor_unittest.cc
|
| @@ -12,7 +12,7 @@
|
| namespace chrome {
|
|
|
| TEST(StorageMonitorTest, DeviceAttachDetachNotifications) {
|
| - MessageLoop message_loop;
|
| + base::MessageLoop message_loop;
|
| const string16 kDeviceName = ASCIIToUTF16("media device");
|
| const std::string kDeviceId1 = "1";
|
| const std::string kDeviceId2 = "2";
|
| @@ -59,14 +59,14 @@ TEST(StorageMonitorTest, DeviceAttachDetachNotifications) {
|
| }
|
|
|
| TEST(StorageMonitorTest, GetAttachedStorageEmpty) {
|
| - MessageLoop message_loop;
|
| + base::MessageLoop message_loop;
|
| test::TestStorageMonitor monitor;
|
| std::vector<StorageInfo> devices = monitor.GetAttachedStorage();
|
| EXPECT_EQ(0U, devices.size());
|
| }
|
|
|
| TEST(StorageMonitorTest, GetRemovableStorageAttachDetach) {
|
| - MessageLoop message_loop;
|
| + base::MessageLoop message_loop;
|
| test::TestStorageMonitor monitor;
|
| const std::string kDeviceId1 = "42";
|
| const string16 kDeviceName1 = ASCIIToUTF16("test");
|
|
|