Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: remoting/client/plugin/pepper_input_handler.h

Issue 5648004: Add the "virtual" keyword on method overrides that are missing it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Missing file Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/shared_impl/audio_impl.h ('k') | remoting/jingle_glue/jingle_thread.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 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 remoting { 14 namespace remoting {
15 15
16 class PepperInputHandler : public InputHandler { 16 class PepperInputHandler : public InputHandler {
17 public: 17 public:
18 PepperInputHandler(ClientContext* context, 18 PepperInputHandler(ClientContext* context,
19 protocol::ConnectionToHost* connection, 19 protocol::ConnectionToHost* connection,
20 ChromotingView* view); 20 ChromotingView* view);
21 virtual ~PepperInputHandler(); 21 virtual ~PepperInputHandler();
22 22
23 void Initialize(); 23 virtual void Initialize();
24 24
25 void HandleKeyEvent(bool keydown, const PP_InputEvent_Key& event); 25 void HandleKeyEvent(bool keydown, const PP_InputEvent_Key& event);
26 void HandleCharacterEvent(const PP_InputEvent_Character& event); 26 void HandleCharacterEvent(const PP_InputEvent_Character& event);
27 27
28 void HandleMouseMoveEvent(const PP_InputEvent_Mouse& event); 28 void HandleMouseMoveEvent(const PP_InputEvent_Mouse& event);
29 void HandleMouseButtonEvent(bool button_down, 29 void HandleMouseButtonEvent(bool button_down,
30 const PP_InputEvent_Mouse& event); 30 const PP_InputEvent_Mouse& event);
31 31
32 private: 32 private:
33 DISALLOW_COPY_AND_ASSIGN(PepperInputHandler); 33 DISALLOW_COPY_AND_ASSIGN(PepperInputHandler);
34 }; 34 };
35 35
36 } // namespace remoting 36 } // namespace remoting
37 37
38 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::PepperInputHandler); 38 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::PepperInputHandler);
39 39
40 #endif // REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_ 40 #endif // REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_
OLDNEW
« no previous file with comments | « ppapi/shared_impl/audio_impl.h ('k') | remoting/jingle_glue/jingle_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698