Index: remoting/host/event_executor_linux.cc |
=================================================================== |
--- remoting/host/event_executor_linux.cc (revision 155615) |
+++ remoting/host/event_executor_linux.cc (working copy) |
@@ -50,9 +50,9 @@ |
virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE; |
// EventExecutor interface. |
- virtual void Start( |
+ virtual void OnSessionStarted( |
scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE; |
- virtual void StopAndDelete() OVERRIDE; |
+ virtual void OnSessionFinished() OVERRIDE; |
private: |
// |mode| is one of the AutoRepeatModeOn, AutoRepeatModeOff, |
@@ -439,13 +439,13 @@ |
XFlush(display_); |
} |
-void EventExecutorLinux::Start( |
+void EventExecutorLinux::OnSessionStarted( |
scoped_ptr<protocol::ClipboardStub> client_clipboard) { |
return; |
} |
-void EventExecutorLinux::StopAndDelete() { |
- delete this; |
+void EventExecutorLinux::OnSessionFinished() { |
+ return; |
} |
} // namespace |