summaryrefslogtreecommitdiffstats
path: root/chromeos/disks/mock_disk_mount_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromeos/disks/mock_disk_mount_manager.h')
-rw-r--r--chromeos/disks/mock_disk_mount_manager.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/chromeos/disks/mock_disk_mount_manager.h b/chromeos/disks/mock_disk_mount_manager.h
index e6b8e89..28ce80d 100644
--- a/chromeos/disks/mock_disk_mount_manager.h
+++ b/chromeos/disks/mock_disk_mount_manager.h
@@ -8,6 +8,7 @@
#include <string>
#include "base/observer_list.h"
+#include "chromeos/dbus/cros_disks_client.h"
#include "chromeos/disks/disk_mount_manager.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -52,7 +53,11 @@ class MockDiskMountManager : public DiskMountManager {
void CreateDiskEntryForMountDevice(
const DiskMountManager::MountPointInfo& mount_info,
const std::string& device_id,
- const std::string& device_label);
+ const std::string& device_label,
+ const std::string& vendor_name,
+ const std::string& product_name,
+ DeviceType device_type,
+ uint64 total_size_in_bytes);
// Removes the fake disk entry associated with the mounted device. This
// function is primarily for RemovableDeviceNotificationsTest.