summaryrefslogtreecommitdiffstats
path: root/remoting/host/event_executor_linux.h
diff options
context:
space:
mode:
authorajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-08 20:28:43 +0000
committerajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-08 20:28:43 +0000
commitb399decfc6b254fd041f4b6f4bf36351cdc15d4b (patch)
tree0fb311d467041a48d3bf154440b171eabc5776bc /remoting/host/event_executor_linux.h
parentd84b3653b42653caebc7a8bd48584659bf5d63c8 (diff)
downloadchromium_src-b399decfc6b254fd041f4b6f4bf36351cdc15d4b.zip
chromium_src-b399decfc6b254fd041f4b6f4bf36351cdc15d4b.tar.gz
chromium_src-b399decfc6b254fd041f4b6f4bf36351cdc15d4b.tar.bz2
Revert "Use the XTest extension to execute mouse and keyboard events."
This reverts commit r65413. TBR=hclam git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65414 0039d316-1c4b-4281-b951-d872f2087c98
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);
};