| 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..ee3e47fd9b29435de2003a40e84801e4a55ce144 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 MacMonitorInterface;
|
| +}
|
| +
|
| namespace content {
|
|
|
| class DeviceMonitorMac {
|
| @@ -15,12 +19,10 @@ class DeviceMonitorMac {
|
| DeviceMonitorMac();
|
| ~DeviceMonitorMac();
|
|
|
| - private:
|
| - // Forward the notifications to system monitor.
|
| void NotifyDeviceChanged(base::SystemMonitor::DeviceType type);
|
| + private:
|
| + scoped_ptr<MacMonitorInterface> device_monitor_impl_;
|
|
|
| - class QTMonitorImpl;
|
| - scoped_ptr<DeviceMonitorMac::QTMonitorImpl> qt_monitor_;
|
| DISALLOW_COPY_AND_ASSIGN(DeviceMonitorMac);
|
| };
|
|
|
|
|