Index: remoting/host/event_executor_win.cc |
diff --git a/remoting/host/event_executor_win.cc b/remoting/host/event_executor_win.cc |
index 2ee24bd070a03d4425fcc10bdecd881331a75c6b..61874188b2394545b355079764b9b895aa166d27 100644 |
--- a/remoting/host/event_executor_win.cc |
+++ b/remoting/host/event_executor_win.cc |
@@ -174,4 +174,10 @@ void EventExecutorWin::HandleKey(const KeyEvent& event) { |
SendInput(1, &input, sizeof(INPUT)); |
} |
+// static |
+EventExecutor* EventExecutor::Create(MessageLoop* message_loop, |
+ Capturer* capturer) { |
+ return new EventExecutorWin(message_loop, capturer); |
+} |
+ |
} // namespace remoting |