Chromium Code Reviews| Index: chrome/browser/storage_monitor/storage_monitor_window_win.h |
| diff --git a/chrome/browser/storage_monitor/removable_device_notifications_window_win.h b/chrome/browser/storage_monitor/storage_monitor_window_win.h |
| similarity index 91% |
| rename from chrome/browser/storage_monitor/removable_device_notifications_window_win.h |
| rename to chrome/browser/storage_monitor/storage_monitor_window_win.h |
| index 3c049e7e572dd5487e953060c09b052cde4b70dd..899e345084e0161a28e1565c0e9cc57388435842 100644 |
| --- a/chrome/browser/storage_monitor/removable_device_notifications_window_win.h |
| +++ b/chrome/browser/storage_monitor/storage_monitor_window_win.h |
| @@ -23,13 +23,13 @@ class TestRemovableDeviceNotificationsWindowWin; |
| class PortableDeviceWatcherWin; |
| class VolumeMountWatcherWin; |
| -class RemovableDeviceNotificationsWindowWin : public StorageMonitor { |
| +class StorageMonitorWindowWin : public StorageMonitor { |
|
vandebo (ex-Chrome)
2013/02/28 20:02:40
The WindowWin part was unnecessary. This can be S
|
| public: |
| // Creates an instance of RemovableDeviceNotificationsWindowWin. Should only |
| // be called by browser start up code. Use GetInstance() instead. |
| - static RemovableDeviceNotificationsWindowWin* Create(); |
| + static StorageMonitorWindowWin* Create(); |
| - virtual ~RemovableDeviceNotificationsWindowWin(); |
| + virtual ~StorageMonitorWindowWin(); |
| // Must be called after the file thread is created. |
| void Init(); |
| @@ -53,7 +53,7 @@ class RemovableDeviceNotificationsWindowWin : public StorageMonitor { |
| // To support unit tests, this constructor takes |volume_mount_watcher| and |
| // |portable_device_watcher| objects. These params are either constructed in |
| // unit tests or in RemovableDeviceNotificationsWindowWin::Create() function. |
| - RemovableDeviceNotificationsWindowWin( |
| + StorageMonitorWindowWin( |
| VolumeMountWatcherWin* volume_mount_watcher, |
| PortableDeviceWatcherWin* portable_device_watcher); |
| @@ -89,7 +89,7 @@ class RemovableDeviceNotificationsWindowWin : public StorageMonitor { |
| // devices. |
| scoped_ptr<PortableDeviceWatcherWin> portable_device_watcher_; |
| - DISALLOW_COPY_AND_ASSIGN(RemovableDeviceNotificationsWindowWin); |
| + DISALLOW_COPY_AND_ASSIGN(StorageMonitorWindowWin); |
| }; |
| } // namespace chrome |