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

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: for reals Created 6 years, 10 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
OLDNEW
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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/basictypes.h"
13 #include "base/mac/foundation_util.h" 14 #include "base/mac/foundation_util.h"
14 #include "base/memory/ref_counted.h" 15 #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" 16 #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" 17 #include "device/hid/hid_device_info.h"
23 #include "device/hid/hid_service.h" 18 #include "device/hid/hid_service.h"
24 19
25 #include <CoreFoundation/CoreFoundation.h>
26 #include <IOKit/hid/IOHIDManager.h>
27
28 namespace device { 20 namespace device {
29 21
30 class HidConnection; 22 class HidConnection;
31 class HidService; 23 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 std::string& 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 47
56 IOHIDDeviceRef FindDevice(std::string id); 48 IOHIDDeviceRef FindDevice(const std::string& device_id);
57 49
58 void Enumerate(); 50 void Enumerate();
59 51
60 void PlatformAddDevice(IOHIDDeviceRef ref); 52 void PlatformAddDevice(IOHIDDeviceRef hid_device);
61 void PlatformRemoveDevice(IOHIDDeviceRef ref); 53 void PlatformRemoveDevice(IOHIDDeviceRef hid_device);
62
63 // The message loop this object belongs to.
64 scoped_refptr<base::MessageLoopProxy> message_loop_;
65 54
66 // Platform HID Manager 55 // Platform HID Manager
67 base::ScopedCFTypeRef<IOHIDManagerRef> hid_manager_ref_; 56 base::ScopedCFTypeRef<IOHIDManagerRef> hid_manager_;
68
69 // Enumeration thread.
70 scoped_ptr<base::Thread> enumeration_runloop_thread_;
71 CFRunLoopRef enumeration_runloop_;
72 base::WaitableEvent enumeration_runloop_init_;
73 57
74 bool available_; 58 bool available_;
75 59
76 DISALLOW_COPY_AND_ASSIGN(HidServiceMac); 60 DISALLOW_COPY_AND_ASSIGN(HidServiceMac);
77 }; 61 };
78 62
79 } // namespace device 63 } // namespace device
80 64
81 #endif // DEVICE_HID_HID_SERVICE_MAC_H_ 65 #endif // DEVICE_HID_HID_SERVICE_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698