OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_ | 5 #ifndef REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_ |
6 #define REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_ | 6 #define REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_ |
7 | 7 |
8 #include "remoting/client/input_handler.h" | 8 #include "remoting/client/input_handler.h" |
9 | 9 |
10 struct PP_InputEvent_Character; | 10 struct PP_InputEvent_Character; |
11 struct PP_InputEvent_Key; | 11 struct PP_InputEvent_Key; |
12 struct PP_InputEvent_Mouse; | 12 struct PP_InputEvent_Mouse; |
13 | 13 |
14 namespace pp { | |
15 class KeyboardInputEvent; | |
16 class MouseInputEvent; | |
17 } // namespace pp | |
18 | |
19 namespace remoting { | 14 namespace remoting { |
20 | 15 |
21 class PepperInputHandler : public InputHandler { | 16 class PepperInputHandler : public InputHandler { |
22 public: | 17 public: |
23 PepperInputHandler(ClientContext* context, | 18 PepperInputHandler(ClientContext* context, |
24 protocol::ConnectionToHost* connection, | 19 protocol::ConnectionToHost* connection, |
25 ChromotingView* view); | 20 ChromotingView* view); |
26 virtual ~PepperInputHandler(); | 21 virtual ~PepperInputHandler(); |
27 | 22 |
28 virtual void Initialize(); | 23 virtual void Initialize(); |
29 | 24 |
30 void HandleKeyEvent(bool keydown, const pp::KeyboardInputEvent& event); | 25 void HandleKeyEvent(bool keydown, const PP_InputEvent_Key& event); |
31 void HandleCharacterEvent(const pp::KeyboardInputEvent& event); | 26 void HandleCharacterEvent(const PP_InputEvent_Character& event); |
32 | 27 |
33 void HandleMouseMoveEvent(const pp::MouseInputEvent& event); | 28 void HandleMouseMoveEvent(const PP_InputEvent_Mouse& event); |
34 void HandleMouseButtonEvent(bool button_down, | 29 void HandleMouseButtonEvent(bool button_down, |
35 const pp::MouseInputEvent& event); | 30 const PP_InputEvent_Mouse& event); |
36 | 31 |
37 private: | 32 private: |
38 DISALLOW_COPY_AND_ASSIGN(PepperInputHandler); | 33 DISALLOW_COPY_AND_ASSIGN(PepperInputHandler); |
39 }; | 34 }; |
40 | 35 |
41 } // namespace remoting | 36 } // namespace remoting |
42 | 37 |
43 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::PepperInputHandler); | 38 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::PepperInputHandler); |
44 | 39 |
45 #endif // REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_ | 40 #endif // REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_ |
OLD | NEW |