Index: remoting/host/simple_host_process.cc |
diff --git a/remoting/host/simple_host_process.cc b/remoting/host/simple_host_process.cc |
index 98d93036a8ca7dcfc5993f14bfe64d0ac851e0c1..398e138796bb3d5f0d10c7c41858f7553ca933e4 100644 |
--- a/remoting/host/simple_host_process.cc |
+++ b/remoting/host/simple_host_process.cc |
@@ -75,16 +75,16 @@ int main(int argc, char** argv) { |
base::EnsureNSPRInit(); |
scoped_ptr<remoting::Capturer> capturer; |
- scoped_ptr<remoting::EventExecutor> event_handler; |
+ scoped_ptr<remoting::protocol::InputStub> input_stub; |
#if defined(OS_WIN) |
capturer.reset(new remoting::CapturerGdi()); |
- event_handler.reset(new remoting::EventExecutorWin(capturer.get())); |
+ input_stub.reset(new remoting::EventExecutorWin(capturer.get())); |
#elif defined(OS_LINUX) |
capturer.reset(new remoting::CapturerLinux()); |
- event_handler.reset(new remoting::EventExecutorLinux(capturer.get())); |
+ input_stub.reset(new remoting::EventExecutorLinux(capturer.get())); |
#elif defined(OS_MACOSX) |
capturer.reset(new remoting::CapturerMac()); |
- event_handler.reset(new remoting::EventExecutorMac(capturer.get())); |
+ input_stub.reset(new remoting::EventExecutorMac(capturer.get())); |
#endif |
// Check the argument to see if we should use a fake capturer. |
@@ -134,7 +134,7 @@ int main(int argc, char** argv) { |
new remoting::ChromotingHost(&context, |
config, |
capturer.release(), |
- event_handler.release())); |
+ input_stub.release())); |
// Let the chromoting host run until the shutdown task is executed. |
MessageLoop message_loop(MessageLoop::TYPE_UI); |