OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // This class implements content::DevicesMonitor on Mac. |
| 6 |
| 7 #ifndef CONTENT_BROWSER_DEVICES_MONITOR_DEVICES_MONITOR_MAC_H_ |
| 8 #define CONTENT_BROWSER_DEVICES_MONITOR_DEVICES_MONITOR_MAC_H_ |
| 9 |
| 10 #include "content/browser/devices_monitor/devices_monitor.h" |
| 11 |
| 12 namespace content { |
| 13 |
| 14 class DevicesMonitorMac : public DevicesMonitor { |
| 15 public: |
| 16 DevicesMonitorMac(); |
| 17 virtual ~DevicesMonitorMac(); |
| 18 |
| 19 virtual void Start(base::SystemMonitor::DevicesChangedObserver*) OVERRIDE; |
| 20 virtual void Stop(base::SystemMonitor::DevicesChangedObserver*) OVERRIDE; |
| 21 |
| 22 private: |
| 23 DISALLOW_COPY_AND_ASSIGN(DevicesMonitorMac); |
| 24 }; |
| 25 |
| 26 } // namespace content |
| 27 |
| 28 #endif // CONTENT_BROWSER_DEVICES_MONITOR_DEVICES_MONITOR_MAC_H_ |
OLD | NEW |