summaryrefslogtreecommitdiffstats
path: root/remoting/client/plugin/pepper_input_handler.h
diff options
context:
space:
mode:
authorweitaosu@chromium.org <weitaosu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-04 07:51:34 +0000
committerweitaosu@chromium.org <weitaosu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-04 07:51:34 +0000
commite7191cc4d7bcaa6ab81ac18c6eb6ed0ca0992ba1 (patch)
tree65a86d17b38564b5c8de664ac1a428d7d7b7d81f /remoting/client/plugin/pepper_input_handler.h
parentb0c63d783c1938bbbbecd630855feed783d218af (diff)
downloadchromium_src-e7191cc4d7bcaa6ab81ac18c6eb6ed0ca0992ba1.zip
chromium_src-e7191cc4d7bcaa6ab81ac18c6eb6ed0ca0992ba1.tar.gz
chromium_src-e7191cc4d7bcaa6ab81ac18c6eb6ed0ca0992ba1.tar.bz2
Issue 245137: Mouse-move events not sent after clicking on drop-down toolbar
Revert "Issue 236549: Inactive window should not be capturing mouseover" This reverts commit bb5596a07d45d3a4832b337c62a22e2c3f90a7ee. See issue 246335: pepper plugin no longer gets notified on of didChangeFocus. BUG=245137 Review URL: https://chromiumcodereview.appspot.com/16140022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203904 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client/plugin/pepper_input_handler.h')
-rw-r--r--remoting/client/plugin/pepper_input_handler.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/remoting/client/plugin/pepper_input_handler.h b/remoting/client/plugin/pepper_input_handler.h
index 822c3ca..2983b07a 100644
--- a/remoting/client/plugin/pepper_input_handler.h
+++ b/remoting/client/plugin/pepper_input_handler.h
@@ -23,20 +23,11 @@ class PepperInputHandler {
explicit PepperInputHandler(protocol::InputStub* input_stub);
virtual ~PepperInputHandler();
- // Called by ChromotingInstance::DidChangeFocus when the instance
- // goes in or out of focus. Sets or clears the has_focus_ flag
- // which controls whether the client passes mouse and wheel
- // events to the remoting server.
- void OnFocusChanged(bool has_focus);
-
bool HandleInputEvent(const pp::InputEvent& event);
private:
protocol::InputStub* input_stub_;
- // Flag indicating whether the calling plugin has focus.
- bool has_focus_;
-
// Accumulated sub-pixel deltas from wheel events.
float wheel_delta_x_;
float wheel_delta_y_;