diff options
author | varunjain@chromium.org <varunjain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-16 22:04:24 +0000 |
---|---|---|
committer | varunjain@chromium.org <varunjain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-16 22:04:24 +0000 |
commit | 97208fa41773188bdecea28f9cc28de41bec636f (patch) | |
tree | 404ebccaf2e033170405402cb649eea319708f98 /ui/aura/root_window_host_x11.cc | |
parent | 885a78901dde0f2d4d3b20f40ba6a1aebd363029 (diff) | |
download | chromium_src-97208fa41773188bdecea28f9cc28de41bec636f.zip chromium_src-97208fa41773188bdecea28f9cc28de41bec636f.tar.gz chromium_src-97208fa41773188bdecea28f9cc28de41bec636f.tar.bz2 |
Do not coalesce X touch move events in aura.
BUG=218270
Review URL: https://chromiumcodereview.appspot.com/14582028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200636 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura/root_window_host_x11.cc')
-rw-r--r-- | ui/aura/root_window_host_x11.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/aura/root_window_host_x11.cc b/ui/aura/root_window_host_x11.cc index ff2fab4..e5641ea 100644 --- a/ui/aura/root_window_host_x11.cc +++ b/ui/aura/root_window_host_x11.cc @@ -942,10 +942,6 @@ void RootWindowHostX11::DispatchXI2Event(const base::NativeEvent& event) { switch (type) { case ui::ET_TOUCH_MOVED: - num_coalesced = ui::CoalescePendingMotionEvents(xev, &last_event); - if (num_coalesced > 0) - xev = &last_event; - // fallthrough case ui::ET_TOUCH_PRESSED: case ui::ET_TOUCH_CANCELLED: case ui::ET_TOUCH_RELEASED: { |