Chromium Code Reviews| Index: components/storage_monitor/storage_monitor_chromeos_unittest.cc |
| diff --git a/components/storage_monitor/storage_monitor_chromeos_unittest.cc b/components/storage_monitor/storage_monitor_chromeos_unittest.cc |
| index dd859d7dd9ba4d049f22bbd8722c88f34b50cb31..ae8a83c88e323f61aaf7ad5f3939933b7eea9868 100644 |
| --- a/components/storage_monitor/storage_monitor_chromeos_unittest.cc |
| +++ b/components/storage_monitor/storage_monitor_chromeos_unittest.cc |
| @@ -196,8 +196,16 @@ void StorageMonitorCrosTest::MountDevice( |
| uint64 device_size_in_bytes) { |
| if (error_code == chromeos::MOUNT_ERROR_NONE) { |
| disk_mount_manager_mock_->CreateDiskEntryForMountDevice( |
| - mount_info, unique_id, device_label, vendor_name, product_name, |
| - device_type, device_size_in_bytes); |
| + mount_info, |
| + unique_id, |
| + device_label, |
| + vendor_name, |
| + product_name, |
| + device_type, |
| + device_size_in_bytes, |
| + false, |
|
tbarzic
2014/03/26 00:40:09
nit:
add comments here:
false /* is_parent */,
tru
Drew Haven
2014/03/27 01:47:34
Done.
|
| + true, |
| + false); |
| } |
| monitor_->OnMountEvent(DiskMountManager::MOUNTING, error_code, mount_info); |
| WaitForFileThread(); |