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-10 22:06:34 +0000
committerajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-10 22:06:34 +0000
commitbb339ae418909bc5325b1695f6b96bcb9d5370e7 (patch)
tree8f528d629cdbd74b3a2e827c91550f36427debca /remoting/host/event_executor_linux.h
parentfd2b86c7ef77b2fb6b432a4a9c6ee1b94ec36548 (diff)
downloadchromium_src-bb339ae418909bc5325b1695f6b96bcb9d5370e7.zip
chromium_src-bb339ae418909bc5325b1695f6b96bcb9d5370e7.tar.gz
chromium_src-bb339ae418909bc5325b1695f6b96bcb9d5370e7.tar.bz2
Revert "Reapply of r65413. XTest dependencies added to _chroots_ on linux bots."
TBR=jcivelli git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65712 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);
};