| Index: remoting/client/plugin/pepper_input_handler.h
|
| ===================================================================
|
| --- remoting/client/plugin/pepper_input_handler.h (revision 93228)
|
| +++ remoting/client/plugin/pepper_input_handler.h (working copy)
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// 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.
|
|
|
| @@ -11,11 +11,6 @@
|
| struct PP_InputEvent_Key;
|
| struct PP_InputEvent_Mouse;
|
|
|
| -namespace pp {
|
| -class KeyboardInputEvent;
|
| -class MouseInputEvent;
|
| -} // namespace pp
|
| -
|
| namespace remoting {
|
|
|
| class PepperInputHandler : public InputHandler {
|
| @@ -27,12 +22,12 @@
|
|
|
| virtual void Initialize();
|
|
|
| - void HandleKeyEvent(bool keydown, const pp::KeyboardInputEvent& event);
|
| - void HandleCharacterEvent(const pp::KeyboardInputEvent& event);
|
| + void HandleKeyEvent(bool keydown, const PP_InputEvent_Key& event);
|
| + void HandleCharacterEvent(const PP_InputEvent_Character& event);
|
|
|
| - void HandleMouseMoveEvent(const pp::MouseInputEvent& event);
|
| + void HandleMouseMoveEvent(const PP_InputEvent_Mouse& event);
|
| void HandleMouseButtonEvent(bool button_down,
|
| - const pp::MouseInputEvent& event);
|
| + const PP_InputEvent_Mouse& event);
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(PepperInputHandler);
|
|
|