summaryrefslogtreecommitdiffstats
path: root/ui/aura/root_window_host_linux.cc
diff options
context:
space:
mode:
authordavemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-20 02:47:24 +0000
committerdavemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-20 02:47:24 +0000
commit91e20036b8f64ca6fdf5f5c039f7e44f5aa39cbf (patch)
tree4d9be997f9719c3175cb0fd1a633238b8794723d /ui/aura/root_window_host_linux.cc
parenta3b9f461cc5696349276e09c4c396a030ecab1e0 (diff)
downloadchromium_src-91e20036b8f64ca6fdf5f5c039f7e44f5aa39cbf.zip
chromium_src-91e20036b8f64ca6fdf5f5c039f7e44f5aa39cbf.tar.gz
chromium_src-91e20036b8f64ca6fdf5f5c039f7e44f5aa39cbf.tar.bz2
Send GestureFlingStart and GestureFlingCancel when cmt sends them
BUG=114818 TEST=None Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=127606 Review URL: https://chromiumcodereview.appspot.com/9601022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127629 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura/root_window_host_linux.cc')
-rw-r--r--ui/aura/root_window_host_linux.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/aura/root_window_host_linux.cc b/ui/aura/root_window_host_linux.cc
index 3a91aea..8fa1cec 100644
--- a/ui/aura/root_window_host_linux.cc
+++ b/ui/aura/root_window_host_linux.cc
@@ -419,6 +419,8 @@ base::MessagePumpDispatcher::DispatchStatus RootWindowHostLinux::Dispatch(
handled = root_window_->DispatchMouseEvent(&mouseev);
break;
}
+ case ui::ET_SCROLL_FLING_START:
+ case ui::ET_SCROLL_FLING_CANCEL:
case ui::ET_SCROLL: {
ScrollEvent scrollev(xev);
handled = root_window_->DispatchScrollEvent(&scrollev);