Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: content/browser/devices_monitor/devices_monitor_mac.mm

Issue 10829073: Add DeviceMonitorLinux in BrowserMainLoop. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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_mac.h"
6
7 namespace content {
8
9 // static
10 DevicesMonitor* DevicesMonitor::Create() {
11 return new DevicesMonitorMac();
12 }
13
14 DevicesMonitorMac::DevicesMonitorMac() {}
15
16 DevicesMonitorMac::~DevicesMonitorMac() {}
17
18 void DevicesMonitorMac::Start(
19 base::SystemMonitor::DevicesChangedObserver* observer) {
20 }
21
22 void DevicesMonitorMac::Stop(
23 base::SystemMonitor::DevicesChangedObserver* observer) {
24 }
25
26 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698