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