OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 REMOTING_HOST_EVENT_EXECUTOR_H_ | 5 #ifndef REMOTING_HOST_EVENT_EXECUTOR_H_ |
6 #define REMOTING_HOST_EVENT_EXECUTOR_H_ | 6 #define REMOTING_HOST_EVENT_EXECUTOR_H_ |
7 | 7 |
8 #include "remoting/protocol/input_stub.h" | 8 #include "remoting/protocol/input_stub.h" |
9 | 9 |
10 class MessageLoop; | 10 class MessageLoop; |
11 | 11 |
| 12 namespace base { |
| 13 |
| 14 class MessageLoopProxy; |
| 15 |
| 16 } // namespace base |
| 17 |
12 namespace remoting { | 18 namespace remoting { |
13 | 19 |
14 class Capturer; | 20 class Capturer; |
15 | 21 |
16 class EventExecutor : public protocol::InputStub { | 22 class EventExecutor : public protocol::InputStub { |
17 public: | 23 public: |
18 // Creates default event executor for the current platform. | 24 // Creates default event executor for the current platform. |
19 // Does not take ownership of |message_loop| or |capturer|. | 25 // Does not take ownership of |message_loop|, |io_message_loop| or |capturer|. |
20 static EventExecutor* Create(MessageLoop* message_loop, | 26 static EventExecutor* Create(MessageLoop* message_loop, |
| 27 base::MessageLoopProxy* io_message_loop, |
21 Capturer* capturer); | 28 Capturer* capturer); |
22 }; | 29 }; |
23 | 30 |
24 } // namespace remoting | 31 } // namespace remoting |
25 | 32 |
26 #endif // REMOTING_HOST_EVENT_EXECUTOR_H_ | 33 #endif // REMOTING_HOST_EVENT_EXECUTOR_H_ |
OLD | NEW |