OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 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 "media/base/user_input_monitor.h" | |
6 | |
7 #include <ApplicationServices/ApplicationServices.h> | |
8 | |
9 namespace media { | |
10 namespace { | |
11 | |
12 class UserInputMonitorMac : public UserInputMonitor { | |
Mark Mentovai
2013/08/23 18:09:03
This is a total mess.
You’ve got UserInputMonitor
| |
13 public: | |
14 explicit UserInputMonitorMac(); | |
15 virtual ~UserInputMonitorMac(); | |
16 | |
17 virtual size_t GetKeyPressCount() const OVERRIDE; | |
18 | |
19 private: | |
20 virtual void StartMouseMonitoring() OVERRIDE; | |
21 virtual void StopMouseMonitoring() OVERRIDE; | |
22 virtual void StartKeyboardMonitoring() OVERRIDE; | |
23 virtual void StopKeyboardMonitoring() OVERRIDE; | |
24 | |
25 size_t initial_key_press_count_; | |
26 | |
27 DISALLOW_COPY_AND_ASSIGN(UserInputMonitorMac); | |
28 }; | |
29 | |
30 UserInputMonitorMac::UserInputMonitorMac() : initial_key_press_count_(0) {} | |
31 | |
32 UserInputMonitorMac::~UserInputMonitorMac() { | |
33 DCHECK(!initial_key_press_count_); | |
34 } | |
35 | |
36 size_t UserInputMonitorMac::GetKeyPressCount() const { | |
37 size_t total_count = CGEventSourceCounterForEventType( | |
38 kCGEventSourceStateHIDSystemState, kCGEventKeyDown); | |
Mark Mentovai
2013/08/23 18:09:03
I believe I understand why you used this given the
| |
39 return total_count - initial_key_press_count_; | |
40 } | |
41 | |
42 void UserInputMonitorMac::StartMouseMonitoring() { | |
43 NOTREACHED(); | |
44 } | |
45 | |
46 void UserInputMonitorMac::StopMouseMonitoring() { | |
47 NOTREACHED(); | |
48 } | |
49 | |
50 void UserInputMonitorMac::StartKeyboardMonitoring() { | |
51 initial_key_press_count_ = CGEventSourceCounterForEventType( | |
Mark Mentovai
2013/08/23 18:09:03
Since you shouldn’t reach this code without initia
| |
52 kCGEventSourceStateHIDSystemState, kCGEventKeyDown); | |
53 } | |
54 | |
55 void UserInputMonitorMac::StopKeyboardMonitoring() { | |
56 initial_key_press_count_ = 0; | |
57 } | |
58 | |
59 } // namespace | |
60 | |
61 scoped_ptr<UserInputMonitor> UserInputMonitor::Create( | |
62 const scoped_refptr<base::SingleThreadTaskRunner>& input_task_runner, | |
63 const scoped_refptr<base::SingleThreadTaskRunner>& ui_task_runner) { | |
64 return scoped_ptr<UserInputMonitor>(new UserInputMonitorMac()); | |
65 } | |
66 | |
67 } // namespace media | |
OLD | NEW |