Index: chrome/browser/chromeos/disks/mock_disk_mount_manager.h |
diff --git a/chrome/browser/chromeos/disks/mock_disk_mount_manager.h b/chrome/browser/chromeos/disks/mock_disk_mount_manager.h |
index f22e72b03bd9658f99114d5505213fca1bec2ae2..78d787b7e65d4d867979a5d76562ffb4fd572629 100644 |
--- a/chrome/browser/chromeos/disks/mock_disk_mount_manager.h |
+++ b/chrome/browser/chromeos/disks/mock_disk_mount_manager.h |
@@ -69,6 +69,9 @@ class MockDiskMountManager : public DiskMountManager { |
// Is used to implement disks. |
const DiskMountManager::DiskMap& disksInternal() const { return disks_; } |
+ // This function is primarily for MediaDeviceNotificationsTest. |
+ const DiskMountManager::MountPointMap& mountPointsInternal() const; |
Lei Zhang
2012/08/03 18:39:54
mountPointsInternalForTest() ?
tbarzic
2012/08/03 18:42:49
I don't think "ForTest" is needed.. this is a mock
kmadhusu
2012/08/03 18:42:51
The current name matches other helper function nam
|
+ |
// Notifies observers about device status update. |
void NotifyDeviceChanged(DiskMountManagerEventType event, |
const std::string& path); |
@@ -83,6 +86,9 @@ class MockDiskMountManager : public DiskMountManager { |
// The list of disks found. |
DiskMountManager::DiskMap disks_; |
+ // The list of existing mount points. |
+ DiskMountManager::MountPointMap mount_points_; |
+ |
DISALLOW_COPY_AND_ASSIGN(MockDiskMountManager); |
}; |