| Index: remoting/host/event_executor.h
|
| diff --git a/remoting/host/event_executor.h b/remoting/host/event_executor.h
|
| index 6051b362a3eb7656224330f39b16f80ea0a90524..20ab1ee40e0e964cbfca246920aa0ae261ed46a2 100644
|
| --- a/remoting/host/event_executor.h
|
| +++ b/remoting/host/event_executor.h
|
| @@ -9,6 +9,12 @@
|
|
|
| class MessageLoop;
|
|
|
| +namespace base {
|
| +
|
| +class MessageLoopProxy;
|
| +
|
| +} // namespace base
|
| +
|
| namespace remoting {
|
|
|
| class Capturer;
|
| @@ -16,8 +22,9 @@ class Capturer;
|
| class EventExecutor : public protocol::InputStub {
|
| public:
|
| // Creates default event executor for the current platform.
|
| - // Does not take ownership of |message_loop| or |capturer|.
|
| + // Does not take ownership of |message_loop|, |io_message_loop| or |capturer|.
|
| static EventExecutor* Create(MessageLoop* message_loop,
|
| + base::MessageLoopProxy* io_message_loop,
|
| Capturer* capturer);
|
| };
|
|
|
|
|