OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 #include "remoting/host/local_input_monitor.h" | 5 #include "remoting/host/local_input_monitor.h" |
6 | 6 |
7 #include <sys/select.h> | 7 #include <sys/select.h> |
8 #include <unistd.h> | 8 #include <unistd.h> |
9 #define XK_MISCELLANY | 9 #define XK_MISCELLANY |
10 #include <X11/keysymdef.h> | 10 #include <X11/keysymdef.h> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/bind.h" | 13 #include "base/bind.h" |
14 #include "base/callback.h" | 14 #include "base/callback.h" |
15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
16 #include "base/location.h" | 16 #include "base/location.h" |
17 #include "base/logging.h" | 17 #include "base/logging.h" |
18 #include "base/message_loop/message_loop.h" | 18 #include "base/message_loop/message_loop.h" |
19 #include "base/message_loop/message_pump_libevent.h" | 19 #include "base/message_loop/message_pump_libevent.h" |
20 #include "base/posix/eintr_wrapper.h" | |
21 #include "base/single_thread_task_runner.h" | 20 #include "base/single_thread_task_runner.h" |
22 #include "base/threading/non_thread_safe.h" | 21 #include "base/threading/non_thread_safe.h" |
23 #include "remoting/host/client_session_control.h" | 22 #include "remoting/host/client_session_control.h" |
24 #include "third_party/skia/include/core/SkPoint.h" | 23 #include "third_party/skia/include/core/SkPoint.h" |
25 | 24 |
26 // These includes need to be later than dictated by the style guide due to | 25 // These includes need to be later than dictated by the style guide due to |
27 // Xlib header pollution, specifically the min, max, and Status macros. | 26 // Xlib header pollution, specifically the min, max, and Status macros. |
28 #include <X11/XKBlib.h> | 27 #include <X11/XKBlib.h> |
29 #include <X11/Xlibint.h> | 28 #include <X11/Xlibint.h> |
30 #include <X11/extensions/record.h> | 29 #include <X11/extensions/record.h> |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner, | 322 scoped_refptr<base::SingleThreadTaskRunner> input_task_runner, |
324 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner, | 323 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner, |
325 base::WeakPtr<ClientSessionControl> client_session_control) { | 324 base::WeakPtr<ClientSessionControl> client_session_control) { |
326 return scoped_ptr<LocalInputMonitor>( | 325 return scoped_ptr<LocalInputMonitor>( |
327 new LocalInputMonitorLinux(caller_task_runner, | 326 new LocalInputMonitorLinux(caller_task_runner, |
328 input_task_runner, | 327 input_task_runner, |
329 client_session_control)); | 328 client_session_control)); |
330 } | 329 } |
331 | 330 |
332 } // namespace remoting | 331 } // namespace remoting |
OLD | NEW |