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 // TODO: merge with SystemMessageWindowWin. |
| 6 #include "content/browser/devices_monitor/devices_monitor_win.h" |
| 7 |
| 8 namespace content { |
| 9 |
| 10 // static |
| 11 DevicesMonitor* DevicesMonitor::Create() { |
| 12 return new DevicesMonitorWin(); |
| 13 } |
| 14 |
| 15 DevicesMonitorWin::DevicesMonitorWin() {} |
| 16 |
| 17 DevicesMonitorWin::~DevicesMonitorWin() {} |
| 18 |
| 19 void DevicesMonitorWin::Start( |
| 20 base::SystemMonitor::DevicesChangedObserver* observer) { |
| 21 } |
| 22 |
| 23 void DevicesMonitorWin::Stop( |
| 24 base::SystemMonitor::DevicesChangedObserver* observer) { |
| 25 } |
| 26 |
| 27 } // namespace content |
OLD | NEW |