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

Issue 2274253002: Added counters for pointer boundary events fired. (Closed)

Created:
4 years, 4 months ago by mustaq
Modified:
4 years, 3 months ago
CC:
asvitkine+watch_chromium.org, blink-reviews, blink-reviews-dom_chromium.org, chromium-reviews, dglazkov+blink, dtapuska+blinkwatch_chromium.org, eae+blinkwatch, nzolghadr+blinkwatch_chromium.org, rwlbuis, sof
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Added counters for pointer boundary events fired. Covered both unconditional firing and firing for captured pointer ids. BUG=640637 TBR=isherman@chromium.org Committed: https://crrev.com/44f9943d379d6647fa3ef799dc1c6fa427fcd835 Cr-Commit-Position: refs/heads/master@{#414728}

Patch Set 1 #

Total comments: 2

Patch Set 2 : dtapuska's comments. #

Total comments: 3

Patch Set 3 : Added hasProcessedPendingPointerCapture API. #

Total comments: 2

Patch Set 4 : Added hasProcessedPendingPointerCapture API. #

Patch Set 5 : Rebased. #

Patch Set 6 : Rebased. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+62 lines, -6 lines) Patch
M third_party/WebKit/Source/core/dom/Element.h View 1 2 3 1 chunk +13 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/Element.cpp View 1 2 3 4 5 1 chunk +6 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/EventTarget.cpp View 1 2 3 4 5 1 chunk +15 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/frame/UseCounter.h View 1 2 3 4 5 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/input/EventHandler.h View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/input/EventHandler.cpp View 1 2 1 chunk +6 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/input/PointerEventManager.h View 1 2 1 chunk +6 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/input/PointerEventManager.cpp View 1 2 1 chunk +6 lines, -1 line 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 2 3 4 5 1 chunk +4 lines, -0 lines 0 comments Download

Messages

Total messages: 35 (15 generated)
mustaq
ptal
4 years, 4 months ago (2016-08-24 19:10:36 UTC) #2
dtapuska
https://codereview.chromium.org/2274253002/diff/1/third_party/WebKit/Source/core/events/EventTarget.cpp File third_party/WebKit/Source/core/events/EventTarget.cpp (right): https://codereview.chromium.org/2274253002/diff/1/third_party/WebKit/Source/core/events/EventTarget.cpp#newcode601 third_party/WebKit/Source/core/events/EventTarget.cpp:601: } else if (checkTypeThenUseCount(event, EventTypeNames::pointerover, UseCounter::PointerOverOutFired) This is duplicated ...
4 years, 4 months ago (2016-08-24 20:20:57 UTC) #3
mustaq
ptal https://codereview.chromium.org/2274253002/diff/1/third_party/WebKit/Source/core/events/EventTarget.cpp File third_party/WebKit/Source/core/events/EventTarget.cpp (right): https://codereview.chromium.org/2274253002/diff/1/third_party/WebKit/Source/core/events/EventTarget.cpp#newcode601 third_party/WebKit/Source/core/events/EventTarget.cpp:601: } else if (checkTypeThenUseCount(event, EventTypeNames::pointerover, UseCounter::PointerOverOutFired) On 2016/08/24 ...
4 years, 4 months ago (2016-08-24 20:50:29 UTC) #4
dtapuska
lgtm
4 years, 4 months ago (2016-08-24 20:54:57 UTC) #5
mustaq
bokan@chromium.org: Please review changes in Source/core
4 years, 4 months ago (2016-08-24 21:08:21 UTC) #7
Navid Zolghadr
https://codereview.chromium.org/2274253002/diff/20001/third_party/WebKit/Source/core/events/EventTarget.cpp File third_party/WebKit/Source/core/events/EventTarget.cpp (right): https://codereview.chromium.org/2274253002/diff/20001/third_party/WebKit/Source/core/events/EventTarget.cpp#newcode604 third_party/WebKit/Source/core/events/EventTarget.cpp:604: UseCounter::count(executingWindow->document(), feature); This probably won't work as you expect. ...
4 years, 4 months ago (2016-08-24 21:18:02 UTC) #8
mustaq
https://codereview.chromium.org/2274253002/diff/20001/third_party/WebKit/Source/core/events/EventTarget.cpp File third_party/WebKit/Source/core/events/EventTarget.cpp (right): https://codereview.chromium.org/2274253002/diff/20001/third_party/WebKit/Source/core/events/EventTarget.cpp#newcode604 third_party/WebKit/Source/core/events/EventTarget.cpp:604: UseCounter::count(executingWindow->document(), feature); On 2016/08/24 21:18:01, Navid Zolghadr wrote: > ...
4 years, 3 months ago (2016-08-25 15:00:33 UTC) #10
mustaq
https://codereview.chromium.org/2274253002/diff/20001/third_party/WebKit/Source/core/events/EventTarget.cpp File third_party/WebKit/Source/core/events/EventTarget.cpp (right): https://codereview.chromium.org/2274253002/diff/20001/third_party/WebKit/Source/core/events/EventTarget.cpp#newcode604 third_party/WebKit/Source/core/events/EventTarget.cpp:604: UseCounter::count(executingWindow->document(), feature); On 2016/08/25 15:00:32, mustaq wrote: > On ...
4 years, 3 months ago (2016-08-25 15:45:54 UTC) #11
Navid Zolghadr
https://codereview.chromium.org/2274253002/diff/40001/third_party/WebKit/Source/core/input/PointerEventManager.cpp File third_party/WebKit/Source/core/input/PointerEventManager.cpp (right): https://codereview.chromium.org/2274253002/diff/40001/third_party/WebKit/Source/core/input/PointerEventManager.cpp#newcode770 third_party/WebKit/Source/core/input/PointerEventManager.cpp:770: return m_pointerCaptureTarget.get(pointerId) == target; This doesn't seem enough either. ...
4 years, 3 months ago (2016-08-25 15:53:24 UTC) #12
mustaq
https://codereview.chromium.org/2274253002/diff/40001/third_party/WebKit/Source/core/input/PointerEventManager.cpp File third_party/WebKit/Source/core/input/PointerEventManager.cpp (right): https://codereview.chromium.org/2274253002/diff/40001/third_party/WebKit/Source/core/input/PointerEventManager.cpp#newcode770 third_party/WebKit/Source/core/input/PointerEventManager.cpp:770: return m_pointerCaptureTarget.get(pointerId) == target; On 2016/08/25 15:53:23, Navid Zolghadr ...
4 years, 3 months ago (2016-08-25 17:38:01 UTC) #13
Navid Zolghadr
lgtm
4 years, 3 months ago (2016-08-25 18:04:29 UTC) #14
bokan
rs lgtm
4 years, 3 months ago (2016-08-25 18:05:04 UTC) #15
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/2274253002/60001
4 years, 3 months ago (2016-08-25 18:09:42 UTC) #18
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/2274253002/60002
4 years, 3 months ago (2016-08-25 18:16:32 UTC) #22
commit-bot: I haz the power
Try jobs failed on following builders: ios-device on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device/builds/58560) ios-simulator on master.tryserver.chromium.mac (JOB_FAILED, ...
4 years, 3 months ago (2016-08-25 18:19:40 UTC) #24
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/2274253002/90001
4 years, 3 months ago (2016-08-25 19:38:44 UTC) #27
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on master.tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/281347)
4 years, 3 months ago (2016-08-25 22:54:47 UTC) #29
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/2274253002/90001
4 years, 3 months ago (2016-08-26 14:37:54 UTC) #31
commit-bot: I haz the power
Committed patchset #6 (id:90001)
4 years, 3 months ago (2016-08-26 16:25:56 UTC) #33
commit-bot: I haz the power
4 years, 3 months ago (2016-08-26 16:27:13 UTC) #35
Message was sent while issue was closed.
Patchset 6 (id:??) landed as
https://crrev.com/44f9943d379d6647fa3ef799dc1c6fa427fcd835
Cr-Commit-Position: refs/heads/master@{#414728}

Powered by Google App Engine
This is Rietveld 408576698