diff options
author | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-20 01:19:43 +0000 |
---|---|---|
committer | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-20 01:19:43 +0000 |
commit | 6b2e271f2babfee4e7c3e3814872cf2308efb4b9 (patch) | |
tree | 78c983da8afa6d8bfb059b05ebe67cea7dd7d5d8 /ui/aura/root_window_host_linux.cc | |
parent | 40bcbbd1d091c4c1ea7dc623bd287fee2797bab0 (diff) | |
download | chromium_src-6b2e271f2babfee4e7c3e3814872cf2308efb4b9.zip chromium_src-6b2e271f2babfee4e7c3e3814872cf2308efb4b9.tar.gz chromium_src-6b2e271f2babfee4e7c3e3814872cf2308efb4b9.tar.bz2 |
Send GestureFlingStart and GestureFlingCancel when cmt sends them
BUG=114818
TEST=None
Review URL: https://chromiumcodereview.appspot.com/9601022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127606 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura/root_window_host_linux.cc')
-rw-r--r-- | ui/aura/root_window_host_linux.cc | 2 |
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); |