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