From 91e20036b8f64ca6fdf5f5c039f7e44f5aa39cbf Mon Sep 17 00:00:00 2001 From: "davemoore@chromium.org" Date: Tue, 20 Mar 2012 02:47:24 +0000 Subject: 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 --- ui/aura/root_window_host_linux.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ui/aura/root_window_host_linux.cc') 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); -- cgit v1.1