Index: chrome/browser/media_gallery/media_device_notifications_window_win_unittest.cc |
diff --git a/chrome/browser/media_gallery/media_device_notifications_window_win_unittest.cc b/chrome/browser/media_gallery/media_device_notifications_window_win_unittest.cc |
index 77c31a014ad8b736d8fff468ca44ffd814aa2bb0..865d3730bd92fd852979355a7afc933bce5f030c 100644 |
--- a/chrome/browser/media_gallery/media_device_notifications_window_win_unittest.cc |
+++ b/chrome/browser/media_gallery/media_device_notifications_window_win_unittest.cc |
@@ -103,7 +103,8 @@ void MediaDeviceNotificationsWindowWinTest::DoDevicesAttachedTest( |
drive[0] = 'A' + *it; |
FilePath::StringType name = L"V" + drive; |
std::string device_id = MediaStorageUtil::MakeDeviceId( |
- MediaStorageUtil::USB_MASS_STORAGE_WITH_DCIM, base::IntToString(*it)); |
+ MediaStorageUtil::REMOVALBE_MASS_STORAGE_WITH_DCIM, |
+ base::IntToString(*it)); |
EXPECT_CALL(observer_, OnRemovableStorageAttached(device_id, name, drive)) |
.Times(0); |
} |
@@ -127,7 +128,8 @@ void MediaDeviceNotificationsWindowWinTest::DoDevicesDetachedTest( |
++it) { |
volume_broadcast.dbcv_unitmask |= 0x1 << *it; |
std::string device_id = MediaStorageUtil::MakeDeviceId( |
- MediaStorageUtil::USB_MASS_STORAGE_WITH_DCIM, base::IntToString(*it)); |
+ MediaStorageUtil::REMOVALBE_MASS_STORAGE_WITH_DCIM, |
+ base::IntToString(*it)); |
EXPECT_CALL(observer_, OnRemovableStorageDetached(device_id)).Times(0); |
} |
} |