Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(688)

Unified Diff: components/storage_monitor/storage_monitor_chromeos_unittest.cc

Issue 207383004: Adds a new removable storage provider for imageWriterPrivate on Chrome OS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updates test checks to avoid ordering issues. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698