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

Side by Side Diff: device/hid/hid_service_mac.h

Issue 161823002: Clean up HID backend and API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 9 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
« no previous file with comments | « device/hid/hid_service_linux.cc ('k') | device/hid/hid_service_mac.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DEVICE_HID_HID_SERVICE_MAC_H_ 5 #ifndef DEVICE_HID_HID_SERVICE_MAC_H_
6 #define DEVICE_HID_HID_SERVICE_MAC_H_ 6 #define DEVICE_HID_HID_SERVICE_MAC_H_
7 7
8 #include <map> 8 #include <CoreFoundation/CoreFoundation.h>
9 #include <IOKit/hid/IOHIDManager.h>
10
9 #include <string> 11 #include <string>
10 #include <vector>
11 12
12 #include "base/basictypes.h"
13 #include "base/mac/foundation_util.h" 13 #include "base/mac/foundation_util.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/memory/singleton.h"
16 #include "base/message_loop/message_loop.h"
17 #include "base/strings/string16.h"
18 #include "base/synchronization/waitable_event.h"
19 #include "base/threading/thread.h"
20 #include "base/threading/thread_checker.h"
21 #include "build/build_config.h"
22 #include "device/hid/hid_device_info.h"
23 #include "device/hid/hid_service.h" 15 #include "device/hid/hid_service.h"
24 16
25 #include <CoreFoundation/CoreFoundation.h> 17 namespace base {
26 #include <IOKit/hid/IOHIDManager.h> 18 class MessageLoopProxy;
19 }
27 20
28 namespace device { 21 namespace device {
29 22
30 class HidConnection; 23 class HidConnection;
31 class HidService;
32 24
33 class HidServiceMac : public HidService { 25 class HidServiceMac : public HidService {
34 public: 26 public:
35 HidServiceMac(); 27 HidServiceMac();
36 28
37 virtual scoped_refptr<HidConnection> Connect(std::string device_id) OVERRIDE; 29 virtual scoped_refptr<HidConnection> Connect(const HidDeviceId& device_id)
30 OVERRIDE;
38 31
39 private: 32 private:
40 virtual ~HidServiceMac(); 33 virtual ~HidServiceMac();
41 34
42 void ScheduleRunLoop(); 35 void StartWatchingDevices();
43 void UnscheduleRunLoop(); 36 void StopWatchingDevices();
44 37
45 // Device changing callbacks. 38 // Device changing callbacks.
46 static void AddDeviceCallback(void* context, 39 static void AddDeviceCallback(void* context,
47 IOReturn result, 40 IOReturn result,
48 void* sender, 41 void* sender,
49 IOHIDDeviceRef ref); 42 IOHIDDeviceRef hid_device);
50 static void RemoveDeviceCallback(void* context, 43 static void RemoveDeviceCallback(void* context,
51 IOReturn result, 44 IOReturn result,
52 void* sender, 45 void* sender,
53 IOHIDDeviceRef ref); 46 IOHIDDeviceRef hid_device);
54 static HidServiceMac* InstanceFromContext(void* context);
55
56 IOHIDDeviceRef FindDevice(std::string id);
57 47
58 void Enumerate(); 48 void Enumerate();
59 49
60 void PlatformAddDevice(IOHIDDeviceRef ref); 50 void PlatformAddDevice(IOHIDDeviceRef hid_device);
61 void PlatformRemoveDevice(IOHIDDeviceRef ref); 51 void PlatformRemoveDevice(IOHIDDeviceRef hid_device);
62
63 // The message loop this object belongs to.
64 scoped_refptr<base::MessageLoopProxy> message_loop_;
65 52
66 // Platform HID Manager 53 // Platform HID Manager
67 base::ScopedCFTypeRef<IOHIDManagerRef> hid_manager_ref_; 54 base::ScopedCFTypeRef<IOHIDManagerRef> hid_manager_;
68 55
69 // Enumeration thread. 56 // The message loop for the thread on which this service was created.
70 scoped_ptr<base::Thread> enumeration_runloop_thread_; 57 scoped_refptr<base::MessageLoopProxy> message_loop_;
71 CFRunLoopRef enumeration_runloop_;
72 base::WaitableEvent enumeration_runloop_init_;
73
74 bool available_;
75 58
76 DISALLOW_COPY_AND_ASSIGN(HidServiceMac); 59 DISALLOW_COPY_AND_ASSIGN(HidServiceMac);
77 }; 60 };
78 61
79 } // namespace device 62 } // namespace device
80 63
81 #endif // DEVICE_HID_HID_SERVICE_MAC_H_ 64 #endif // DEVICE_HID_HID_SERVICE_MAC_H_
OLDNEW
« no previous file with comments | « device/hid/hid_service_linux.cc ('k') | device/hid/hid_service_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698