| Index: chrome/browser/system_monitor/volume_mount_watcher_win.h
|
| diff --git a/chrome/browser/system_monitor/volume_mount_watcher_win.h b/chrome/browser/system_monitor/volume_mount_watcher_win.h
|
| index 474f3b52dcf1966f10b84b35844cb09468394d85..69ccd53ccd9841c6d9f036000dcc297f680f446f 100644
|
| --- a/chrome/browser/system_monitor/volume_mount_watcher_win.h
|
| +++ b/chrome/browser/system_monitor/volume_mount_watcher_win.h
|
| @@ -13,16 +13,17 @@
|
| #include "base/file_path.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/string16.h"
|
| -#include "base/system_monitor/system_monitor.h"
|
|
|
| namespace chrome {
|
|
|
| // This class watches the volume mount points and sends notifications to
|
| -// base::SystemMonitor about the device attach/detach events. This is a
|
| -// singleton class instantiated by RemovableDeviceNotificationsWindowWin.
|
| +// RemovableStorageNotifications about the device attach/detach events.
|
| +// This is a singleton class instantiated by
|
| +// RemovableDeviceNotificationsWindowWin.
|
| class VolumeMountWatcherWin
|
| : public base::RefCountedThreadSafe<VolumeMountWatcherWin> {
|
| public:
|
| + // TODO(gbillock): Take the RemovableStorageNotifications as an argument.
|
| VolumeMountWatcherWin();
|
|
|
| // Returns the volume file path of the drive specified by the |drive_number|.
|
| @@ -41,7 +42,7 @@ class VolumeMountWatcherWin
|
| string16* name,
|
| bool* removable);
|
|
|
| - // Processes DEV_BROADCAST_VOLUME messages and triggers a SystemMonitor
|
| + // Processes DEV_BROADCAST_VOLUME messages and triggers a
|
| // notification if appropriate.
|
| void OnWindowMessage(UINT event_type, LPARAM data);
|
|
|
|
|