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

Side by Side Diff: content/browser/devices_monitor/devices_monitor_win.cc

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 // 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698