Roll third_party/android_tools to the latest: updated the support library to 19.0.1
[chromium-blink-merge.git] / remoting / host / ipc_input_injector.h
blob1bfdd3cf6168ca779ed6ef4e5cce1644a4a1f8f4
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef REMOTING_HOST_IPC_INPUT_INJECTOR_H_
6 #define REMOTING_HOST_IPC_INPUT_INJECTOR_H_
8 #include "base/memory/ref_counted.h"
9 #include "remoting/host/input_injector.h"
10 #include "remoting/proto/event.pb.h"
12 namespace remoting {
14 class DesktopSessionProxy;
16 // Routes InputInjector calls though the IPC channel to the desktop session
17 // agent running in the desktop integration process.
18 class IpcInputInjector : public InputInjector {
19 public:
20 explicit IpcInputInjector(
21 scoped_refptr<DesktopSessionProxy> desktop_session_proxy);
22 virtual ~IpcInputInjector();
24 // ClipboardStub interface.
25 virtual void InjectClipboardEvent(
26 const protocol::ClipboardEvent& event) OVERRIDE;
28 // InputStub interface.
29 virtual void InjectKeyEvent(const protocol::KeyEvent& event) OVERRIDE;
30 virtual void InjectMouseEvent(const protocol::MouseEvent& event) OVERRIDE;
32 // InputInjector interface.
33 virtual void Start(
34 scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE;
36 private:
37 // Wraps the IPC channel to the desktop process.
38 scoped_refptr<DesktopSessionProxy> desktop_session_proxy_;
40 DISALLOW_COPY_AND_ASSIGN(IpcInputInjector);
43 } // namespace remoting
45 #endif // REMOTING_HOST_IPC_INPUT_INJECTOR_H_