diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-10 01:55:04 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-10 01:55:04 +0000 |
commit | c6839877bdbf53f97fec94d6a9c046a7974c1ce1 (patch) | |
tree | af0f069e22a51e1e71cd2d293bb1818e86b505b6 /webkit/tools/test_shell/webwidget_host_win.cc | |
parent | 5ec41b8410e776699defd61afe439a7b8938fb03 (diff) | |
download | chromium_src-c6839877bdbf53f97fec94d6a9c046a7974c1ce1.zip chromium_src-c6839877bdbf53f97fec94d6a9c046a7974c1ce1.tar.gz chromium_src-c6839877bdbf53f97fec94d6a9c046a7974c1ce1.tar.bz2 |
Send mouse events to the renderer before changing mouse capture, so that the mousecapturelost arrives after mouseup.
Review URL: http://codereview.chromium.org/743003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41113 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/webwidget_host_win.cc')
-rw-r--r-- | webkit/tools/test_shell/webwidget_host_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/test_shell/webwidget_host_win.cc b/webkit/tools/test_shell/webwidget_host_win.cc index 59794d0..6ecfcee 100644 --- a/webkit/tools/test_shell/webwidget_host_win.cc +++ b/webkit/tools/test_shell/webwidget_host_win.cc @@ -291,6 +291,7 @@ void WebWidgetHost::Resize(LPARAM lparam) { void WebWidgetHost::MouseEvent(UINT message, WPARAM wparam, LPARAM lparam) { const WebMouseEvent& event = WebInputEventFactory::mouseEvent( view_, message, wparam, lparam); + webwidget_->handleInputEvent(event); switch (event.type) { case WebInputEvent::MouseMove: TrackMouseLeave(true); @@ -311,7 +312,6 @@ void WebWidgetHost::MouseEvent(UINT message, WPARAM wparam, LPARAM lparam) { ReleaseCapture(); break; } - webwidget_->handleInputEvent(event); } void WebWidgetHost::WheelEvent(WPARAM wparam, LPARAM lparam) { |