summaryrefslogtreecommitdiffstats
path: root/remoting/host/event_executor_linux.h
blob: cda6476539b40609b197873de134178662e0ab07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_HOST_EVENT_EXECUTOR_LINUX_H_
#define REMOTING_HOST_EVENT_EXECUTOR_LINUX_H_

#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:
  EventExecutorLinux(Capturer* capturer);
  virtual ~EventExecutorLinux();

  virtual void HandleInputEvent(ChromotingClientMessage* message);

 private:
  scoped_ptr<EventExecutorLinuxPimpl> pimpl_;

  DISALLOW_COPY_AND_ASSIGN(EventExecutorLinux);
};

}  // namespace remoting

#endif  // REMOTING_HOST_EVENT_EXECUTOR_LINUX_H_