Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Issue 2746513002: [Compositor event queue] Queue GestureFlingStart/Cancel together with scroll/pinch (Closed)

Created:
3 years, 9 months ago by chongz
Modified:
3 years, 9 months ago
Reviewers:
dtapuska, tdresser
CC:
chromium-reviews, dtapuska+chromiumwatch_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

[Compositor event queue] Queue GestureFlingStart/Cancel together with scroll/pinch Currently only |GestureScroll*| and |GesturePinch*| will be put into the queue. We should cover |GestureFlingStart/Cancel| as well since it's order-sensitive. BUG=693289 Review-Url: https://codereview.chromium.org/2746513002 Cr-Commit-Position: refs/heads/master@{#456772} Committed: https://chromium.googlesource.com/chromium/src/+/ad977926ecd213a1063fb7d429d6fd1d5ee7dce7

Patch Set 1 #

Total comments: 7

Patch Set 2 : Address tdresser@ and dtapuska@'s comments #

Total comments: 3

Patch Set 3 : dtapuska@'s review 2: Use IsGestureScrollOrFlingOrPinch #

Unified diffs Side-by-side diffs Delta from patch set Stats (+63 lines, -10 lines) Patch
M ui/events/blink/blink_event_util.h View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M ui/events/blink/blink_event_util.cc View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M ui/events/blink/input_handler_proxy.cc View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M ui/events/blink/input_handler_proxy_unittest.cc View 1 3 chunks +56 lines, -5 lines 0 comments Download

Messages

Total messages: 35 (24 generated)
chongz
tdresser@ PTAL, thanks!
3 years, 9 months ago (2017-03-10 04:33:51 UTC) #12
tdresser
LGTM with nit. https://codereview.chromium.org/2746513002/diff/20001/ui/events/blink/blink_event_util.cc File ui/events/blink/blink_event_util.cc (right): https://codereview.chromium.org/2746513002/diff/20001/ui/events/blink/blink_event_util.cc#newcode965 ui/events/blink/blink_event_util.cc:965: bool IsGestureScrollFlingPinch(WebInputEvent::Type type) { I'd prefer ...
3 years, 9 months ago (2017-03-10 15:31:06 UTC) #13
dtapuska
https://codereview.chromium.org/2746513002/diff/20001/ui/events/blink/blink_event_util.h File ui/events/blink/blink_event_util.h (right): https://codereview.chromium.org/2746513002/diff/20001/ui/events/blink/blink_event_util.h#newcode95 ui/events/blink/blink_event_util.h:95: DCHECK(IsGestureScrollFlingPinch(event.type())); On 2017/03/10 15:31:06, tdresser wrote: > It isn't ...
3 years, 9 months ago (2017-03-10 15:49:14 UTC) #15
chongz
https://codereview.chromium.org/2746513002/diff/20001/ui/events/blink/blink_event_util.cc File ui/events/blink/blink_event_util.cc (right): https://codereview.chromium.org/2746513002/diff/20001/ui/events/blink/blink_event_util.cc#newcode965 ui/events/blink/blink_event_util.cc:965: bool IsGestureScrollFlingPinch(WebInputEvent::Type type) { On 2017/03/10 15:31:06, tdresser wrote: ...
3 years, 9 months ago (2017-03-14 14:51:06 UTC) #18
dtapuska
https://codereview.chromium.org/2746513002/diff/40001/ui/events/blink/blink_event_util.cc File ui/events/blink/blink_event_util.cc (right): https://codereview.chromium.org/2746513002/diff/40001/ui/events/blink/blink_event_util.cc#newcode965 ui/events/blink/blink_event_util.cc:965: bool IsGestureScrollFlingOrPinch(WebInputEvent::Type type) { Isn't it IsGestureScrollOrFlingOrPinch?
3 years, 9 months ago (2017-03-14 15:06:51 UTC) #19
tdresser
https://codereview.chromium.org/2746513002/diff/40001/ui/events/blink/blink_event_util.cc File ui/events/blink/blink_event_util.cc (right): https://codereview.chromium.org/2746513002/diff/40001/ui/events/blink/blink_event_util.cc#newcode965 ui/events/blink/blink_event_util.cc:965: bool IsGestureScrollFlingOrPinch(WebInputEvent::Type type) { On 2017/03/14 15:06:51, dtapuska wrote: ...
3 years, 9 months ago (2017-03-14 15:27:15 UTC) #20
dtapuska
On 2017/03/14 15:06:51, dtapuska wrote: > https://codereview.chromium.org/2746513002/diff/40001/ui/events/blink/blink_event_util.cc > File ui/events/blink/blink_event_util.cc (right): > > https://codereview.chromium.org/2746513002/diff/40001/ui/events/blink/blink_event_util.cc#newcode965 > ...
3 years, 9 months ago (2017-03-14 15:29:14 UTC) #21
chongz
https://codereview.chromium.org/2746513002/diff/40001/ui/events/blink/blink_event_util.cc File ui/events/blink/blink_event_util.cc (right): https://codereview.chromium.org/2746513002/diff/40001/ui/events/blink/blink_event_util.cc#newcode965 ui/events/blink/blink_event_util.cc:965: bool IsGestureScrollFlingOrPinch(WebInputEvent::Type type) { On 2017/03/14 15:27:15, tdresser wrote: ...
3 years, 9 months ago (2017-03-14 17:51:24 UTC) #26
dtapuska
On 2017/03/14 17:51:24, chongz wrote: > https://codereview.chromium.org/2746513002/diff/40001/ui/events/blink/blink_event_util.cc > File ui/events/blink/blink_event_util.cc (right): > > https://codereview.chromium.org/2746513002/diff/40001/ui/events/blink/blink_event_util.cc#newcode965 > ...
3 years, 9 months ago (2017-03-14 17:56:22 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2746513002/60001
3 years, 9 months ago (2017-03-14 18:39:52 UTC) #32
commit-bot: I haz the power
3 years, 9 months ago (2017-03-14 18:46:35 UTC) #35
Message was sent while issue was closed.
Committed patchset #3 (id:60001) as
https://chromium.googlesource.com/chromium/src/+/ad977926ecd213a1063fb7d429d6...

Powered by Google App Engine
This is Rietveld 408576698