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

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

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 // 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 {
tommi (sloooow) - chröme 2012/07/30 11:07:04 do we need to add these empty classes now or can i
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698