Chromium Code Reviews| Index: content/browser/device_monitor_mac.h |
| diff --git a/content/browser/device_monitor_mac.h b/content/browser/device_monitor_mac.h |
| index bab522f4dbe5b5930e57fcacae1df370aaf03857..15d773bfb6b6174349b8fb3e653f34f0a513dbac 100644 |
| --- a/content/browser/device_monitor_mac.h |
| +++ b/content/browser/device_monitor_mac.h |
| @@ -8,6 +8,10 @@ |
| #include "base/basictypes.h" |
| #include "base/system_monitor/system_monitor.h" |
| +namespace { |
| +class MacMonitor; |
| +} |
| + |
| namespace content { |
| class DeviceMonitorMac { |
|
Robert Sesek
2013/10/15 20:44:46
This, like all top-level public declarations, need
mcasas
2013/10/16 11:04:40
Done.
|
| @@ -15,12 +19,11 @@ class DeviceMonitorMac { |
| DeviceMonitorMac(); |
| ~DeviceMonitorMac(); |
| - private: |
| - // Forward the notifications to system monitor. |
| void NotifyDeviceChanged(base::SystemMonitor::DeviceType type); |
|
Robert Sesek
2013/10/15 20:44:46
As does this. Where am I notified?
mcasas
2013/10/16 11:04:40
Done.
|
| - class QTMonitorImpl; |
| - scoped_ptr<DeviceMonitorMac::QTMonitorImpl> qt_monitor_; |
| + private: |
| + scoped_ptr<MacMonitor> device_monitor_impl_; |
| + |
| DISALLOW_COPY_AND_ASSIGN(DeviceMonitorMac); |
| }; |