#ifndef COMPONENTS_STORAGE_MONITOR_TEST_STORAGE_MONITOR_WIN_H_
#define COMPONENTS_STORAGE_MONITOR_TEST_STORAGE_MONITOR_WIN_H_
#include <windows.h>
#include "base/memory/ref_counted.h"
#include "components/storage_monitor/storage_monitor_win.h"
namespace storage_monitor {
class TestPortableDeviceWatcherWin;
class TestVolumeMountWatcherWin;
class TestStorageMonitorWin: public StorageMonitorWin {
public:
TestStorageMonitorWin(
TestVolumeMountWatcherWin* volume_mount_watcher,
TestPortableDeviceWatcherWin* portable_device_watcher);
virtual ~TestStorageMonitorWin();
void InjectDeviceChange(UINT event_type, DWORD data);
VolumeMountWatcherWin* volume_mount_watcher();
virtual Receiver* receiver() const OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(TestStorageMonitorWin);
};
}
#endif