diff options
Diffstat (limited to 'remoting/host/event_executor_linux.h')
-rw-r--r-- | remoting/host/event_executor_linux.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/remoting/host/event_executor_linux.h b/remoting/host/event_executor_linux.h index bdb3e73..cda6476 100644 --- a/remoting/host/event_executor_linux.h +++ b/remoting/host/event_executor_linux.h @@ -5,12 +5,13 @@ #ifndef REMOTING_HOST_EVENT_EXECUTOR_LINUX_H_ #define REMOTING_HOST_EVENT_EXECUTOR_LINUX_H_ -#include <vector> - +#include "base/scoped_ptr.h" #include "remoting/host/event_executor.h" namespace remoting { +class EventExecutorLinuxPimpl; + // A class to generate events on Linux. class EventExecutorLinux : public EventExecutor { public: @@ -20,6 +21,8 @@ class EventExecutorLinux : public EventExecutor { virtual void HandleInputEvent(ChromotingClientMessage* message); private: + scoped_ptr<EventExecutorLinuxPimpl> pimpl_; + DISALLOW_COPY_AND_ASSIGN(EventExecutorLinux); }; |