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

Issue 1479923002: Enumerate the return value of dispatchEvent so it is clear. (Closed)

Created:
5 years ago by dtapuska
Modified:
4 years, 10 months ago
CC:
darktears, blink-reviews, blink-reviews-animation_chromium.org, blink-reviews-bindings_chromium.org, blink-reviews-dom_chromium.org, blink-reviews-html_chromium.org, blink-worker-reviews_chromium.org, chromium-reviews, cmumford, dglazkov+blink, dgrogan, eae+blinkwatch, eric.carlson_apple.com, Eric Willigers, falken, fs, gasubic, horo+watch_chromium.org, jsbell+idb_chromium.org, jsbell+serviceworker_chromium.org, kinuko+serviceworker, kinuko+worker_chromium.org, michaeln, mlamouri+watch-blink_chromium.org, nhiroki, Peter Beverloo, rjwright, rwlbuis, serviceworker-reviews, shans, sof, nessy, tzik, vcarbune.chromium
Base URL:
https://chromium.googlesource.com/chromium/src.git@master_passive_uma_add
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Enumerate the return value of dispatchEvent so it is clear. Change the boolean result of dispatchEvent to an enum class so that the return value actually makes sense. Gesture events returned inverted results. Remove some event mediators that aren't required now that the result code indicates whether if the default handler was invoked or not. BUG=560357, 560355, 543611 Committed: https://crrev.com/c68b1aecf681958457d0f6c09c8e379ed02b6b80 Cr-Commit-Position: refs/heads/master@{#377885}

Patch Set 1 #

Patch Set 2 : Fix dispatchEvent return code #

Patch Set 3 : Wheel Events which are mouse events caused crashes in debug builds #

Patch Set 4 : sed -i s/DispatchEventResult/WebInputEventResult/g #

Total comments: 6

Patch Set 5 : Fix tkent's comments #

Patch Set 6 : Rebase #

Total comments: 5

Patch Set 7 : Add back the EventDispatchResult enum #

Total comments: 14

Patch Set 8 : Rename enum values #

Total comments: 4

Patch Set 9 : Fix up couple of nits #

Total comments: 4

Patch Set 10 : Fix comments #

Total comments: 14

Patch Set 11 : Fix up phillip's comments #

Total comments: 1

Patch Set 12 : Fix typo #

Unified diffs Side-by-side diffs Delta from patch set Stats (+219 lines, -312 lines) Patch
M third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/animation/Animation.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/animation/Animation.cpp View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/core.gypi View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Node.h View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Node.cpp View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +8 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/editing/FrameSelection.cpp View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/editing/SelectionController.cpp View 1 2 3 4 5 6 7 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/editing/SelectionEditor.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/editing/SelectionEditor.cpp View 1 2 3 4 5 6 7 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/events/DragEvent.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/DragEvent.cpp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/EventDispatchMediator.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/EventDispatchMediator.cpp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
A third_party/WebKit/Source/core/events/EventDispatchResult.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +29 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/events/EventDispatcher.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/events/EventDispatcher.cpp View 1 2 3 4 5 6 7 8 9 10 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/events/EventTarget.h View 1 2 3 4 5 6 7 8 9 10 5 chunks +7 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/events/EventTarget.cpp View 1 2 3 4 5 6 7 8 9 10 4 chunks +21 lines, -8 lines 0 comments Download
M third_party/WebKit/Source/core/events/FocusEvent.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/FocusEvent.cpp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/GestureEvent.h View 1 2 3 2 chunks +0 lines, -17 lines 0 comments Download
M third_party/WebKit/Source/core/events/GestureEvent.cpp View 1 2 3 4 5 6 1 chunk +0 lines, -22 lines 0 comments Download
M third_party/WebKit/Source/core/events/InputEvent.h View 1 2 3 4 5 6 7 2 chunks +0 lines, -12 lines 0 comments Download
M third_party/WebKit/Source/core/events/InputEvent.cpp View 1 2 3 4 5 6 7 2 chunks +0 lines, -25 lines 0 comments Download
M third_party/WebKit/Source/core/events/KeyboardEvent.h View 1 2 3 3 chunks +0 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/core/events/KeyboardEvent.cpp View 1 2 3 4 5 6 1 chunk +0 lines, -21 lines 0 comments Download
M third_party/WebKit/Source/core/events/MouseEvent.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/MouseEvent.cpp View 1 2 3 4 5 6 7 8 9 10 3 chunks +9 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/core/events/PointerEvent.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/PointerEvent.cpp View 1 2 3 4 5 6 7 1 chunk +4 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/events/TouchEvent.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/TouchEvent.cpp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/events/WheelEvent.h View 1 2 3 2 chunks +0 lines, -11 lines 0 comments Download
M third_party/WebKit/Source/core/events/WheelEvent.cpp View 1 2 3 4 5 6 2 chunks +1 line, -21 lines 0 comments Download
M third_party/WebKit/Source/core/frame/LocalDOMWindow.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/HTMLFormElement.cpp View 1 2 3 4 5 6 7 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/track/TextTrackCue.h View 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/track/TextTrackCue.cpp View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/input/EventHandler.h View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/input/EventHandler.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 chunks +43 lines, -49 lines 0 comments Download
M third_party/WebKit/Source/core/input/PointerEventManager.cpp View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/core/page/ContextMenuController.cpp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/page/DragController.h View 1 2 3 4 5 6 7 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/page/DragController.cpp View 1 2 3 4 5 6 7 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/workers/WorkerMessagingProxy.cpp View 1 2 3 4 5 6 7 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/modules/app_banner/AppBannerController.cpp View 1 2 3 4 5 6 7 1 chunk +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.h View 1 2 3 4 5 6 7 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.cpp View 1 2 3 4 5 6 7 8 9 10 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.h View 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBRequest.h View 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp View 1 2 3 4 5 6 7 8 9 10 4 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBTransaction.h View 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp View 1 2 3 4 5 6 7 8 9 10 3 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/modules/notifications/Notification.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/notifications/Notification.cpp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/RespondWithObserver.h View 1 2 3 4 5 6 7 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/RespondWithObserver.cpp View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerGlobalScope.cpp View 1 2 3 4 5 6 7 8 9 10 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +2 lines, -3 lines 0 comments Download

Messages

Total messages: 68 (18 generated)
dtapuska
5 years ago (2015-11-30 14:40:04 UTC) #3
tkent
If we have WebInputEventResult, we don't need to introduce blink::EventTarget::DispatchEventResult. We should use WebInputEventResult everywhere. ...
5 years ago (2015-12-01 00:42:14 UTC) #4
dtapuska
On 2015/12/01 00:42:14, tkent wrote: > If we have WebInputEventResult, we don't need to introduce ...
5 years ago (2015-12-01 01:27:48 UTC) #6
dcheng
On 2015/12/01 at 01:27:48, dtapuska wrote: > On 2015/12/01 00:42:14, tkent wrote: > > If ...
5 years ago (2015-12-01 01:35:29 UTC) #7
haraken
On 2015/12/01 01:35:29, dcheng wrote: > On 2015/12/01 at 01:27:48, dtapuska wrote: > > On ...
5 years ago (2015-12-01 01:37:40 UTC) #8
Rick Byers
On 2015/12/01 01:37:40, haraken wrote: > On 2015/12/01 01:35:29, dcheng wrote: > > On 2015/12/01 ...
5 years ago (2015-12-01 17:23:01 UTC) #9
dtapuska
On 2015/12/01 17:23:01, Rick Byers wrote: > On 2015/12/01 01:37:40, haraken wrote: > > On ...
5 years ago (2015-12-02 15:25:33 UTC) #10
tkent
> In terms of the Mediators; I'd need to adjust their code and it would ...
5 years ago (2015-12-03 00:36:25 UTC) #11
jsbell
Drive by... https://codereview.chromium.org/1479923002/diff/60001/third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp File third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp (left): https://codereview.chromium.org/1479923002/diff/60001/third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp#oldcode461 third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp:461: bool dontPreventDefault = IDBEventDispatcher::dispatch(event.get(), targets); Very happy ...
5 years ago (2015-12-03 00:46:18 UTC) #13
dtapuska
PTAL https://codereview.chromium.org/1479923002/diff/60001/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.cpp File third_party/WebKit/Source/core/workers/WorkerMessagingProxy.cpp (right): https://codereview.chromium.org/1479923002/diff/60001/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.cpp#newcode176 third_party/WebKit/Source/core/workers/WorkerMessagingProxy.cpp:176: postTaskToWorkerGlobalScope(createCrossThreadTask(&processExceptionOnWorkerGlobalScope, exceptionId, errorHandled)); On 2015/12/03 00:36:25, tkent wrote: ...
5 years ago (2015-12-03 02:00:53 UTC) #14
tkent
lgtm
5 years ago (2015-12-03 03:20:10 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1479923002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1479923002/80001
5 years ago (2015-12-04 14:24:57 UTC) #17
commit-bot: I haz the power
Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/103092) ios_rel_device_ninja on tryserver.chromium.mac (JOB_FAILED, ...
5 years ago (2015-12-04 14:28:05 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1479923002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1479923002/100001
5 years ago (2015-12-04 17:15:55 UTC) #22
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/150171)
5 years ago (2015-12-04 18:35:33 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1479923002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1479923002/100001
5 years ago (2015-12-04 19:53:32 UTC) #26
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/150516)
5 years ago (2015-12-04 20:11:40 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1479923002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1479923002/100001
5 years ago (2015-12-04 20:48:37 UTC) #30
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/150561)
5 years ago (2015-12-04 21:48:29 UTC) #32
philipj_slow
Using WebInputEventResult for the very generic dispatchEvent doesn't look good. Something like enum DispatchEventResult { ...
5 years ago (2015-12-04 22:38:51 UTC) #34
philipj_slow
On 2015/12/04 22:38:51, philipj wrote: > Using WebInputEventResult for the very generic dispatchEvent doesn't look ...
5 years ago (2015-12-04 22:43:24 UTC) #35
dtapuska
On 2015/12/04 22:43:24, philipj wrote: > On 2015/12/04 22:38:51, philipj wrote: > > Using WebInputEventResult ...
5 years ago (2015-12-07 14:25:18 UTC) #36
dtapuska
https://codereview.chromium.org/1479923002/diff/100001/third_party/WebKit/Source/core/events/EventTarget.cpp File third_party/WebKit/Source/core/events/EventTarget.cpp (right): https://codereview.chromium.org/1479923002/diff/100001/third_party/WebKit/Source/core/events/EventTarget.cpp#newcode254 third_party/WebKit/Source/core/events/EventTarget.cpp:254: exceptionState.throwDOMException(InvalidStateError, "The event provided is null."); On 2015/12/04 22:38:51, ...
5 years ago (2015-12-07 14:25:30 UTC) #37
philipj_slow
On 2015/12/07 14:25:18, dtapuska wrote: > On 2015/12/04 22:43:24, philipj wrote: > > On 2015/12/04 ...
5 years ago (2015-12-07 15:01:45 UTC) #38
philipj_slow
https://codereview.chromium.org/1479923002/diff/100001/third_party/WebKit/Source/core/events/EventTarget.cpp File third_party/WebKit/Source/core/events/EventTarget.cpp (right): https://codereview.chromium.org/1479923002/diff/100001/third_party/WebKit/Source/core/events/EventTarget.cpp#newcode271 third_party/WebKit/Source/core/events/EventTarget.cpp:271: // Return whether the event was cancelled or not ...
5 years ago (2015-12-07 15:03:56 UTC) #39
philipj_slow
Rick, can you take another deep dive into this? If it seems like I'm just ...
5 years ago (2015-12-07 15:05:21 UTC) #40
dtapuska
On 2015/12/07 15:01:45, philipj wrote: > On 2015/12/07 14:25:18, dtapuska wrote: > > On 2015/12/04 ...
5 years ago (2015-12-07 15:20:16 UTC) #41
Rick Byers
On 2015/12/07 15:05:21, philipj wrote: > Rick, can you take another deep dive into this? ...
5 years ago (2015-12-07 20:51:48 UTC) #42
Rick Byers
On 2015/12/07 20:51:48, Rick Byers wrote: > On 2015/12/07 15:05:21, philipj wrote: > > Rick, ...
5 years ago (2015-12-07 21:20:27 UTC) #43
philipj_slow
On 2015/12/07 20:51:48, Rick Byers wrote: > Thinking about this more I agree with Philip ...
5 years ago (2015-12-08 10:24:18 UTC) #44
philipj_slow
On 2015/12/07 21:20:27, Rick Byers wrote: > Chatting with Dave more, I do think the ...
5 years ago (2015-12-08 10:32:02 UTC) #45
Rick Byers
On 2015/12/08 10:32:02, philipj wrote: > On 2015/12/07 21:20:27, Rick Byers wrote: > > Chatting ...
5 years ago (2015-12-11 22:36:19 UTC) #46
dtapuska
On 2015/12/11 22:36:19, Rick Byers wrote: > On 2015/12/08 10:32:02, philipj wrote: > > On ...
4 years, 10 months ago (2016-02-19 22:06:56 UTC) #47
tkent
https://codereview.chromium.org/1479923002/diff/120001/third_party/WebKit/Source/core/events/EventTarget.cpp File third_party/WebKit/Source/core/events/EventTarget.cpp (right): https://codereview.chromium.org/1479923002/diff/120001/third_party/WebKit/Source/core/events/EventTarget.cpp#newcode255 third_party/WebKit/Source/core/events/EventTarget.cpp:255: if (!event) { This check is unnecessary. It's done ...
4 years, 10 months ago (2016-02-22 01:40:22 UTC) #48
philipj_slow
https://codereview.chromium.org/1479923002/diff/120001/third_party/WebKit/Source/core/events/EventTarget.h File third_party/WebKit/Source/core/events/EventTarget.h (right): https://codereview.chromium.org/1479923002/diff/120001/third_party/WebKit/Source/core/events/EventTarget.h#newcode119 third_party/WebKit/Source/core/events/EventTarget.h:119: NotHandled, In order to bring this closer to the ...
4 years, 10 months ago (2016-02-22 07:30:18 UTC) #49
Rick Byers
https://codereview.chromium.org/1479923002/diff/120001/third_party/WebKit/Source/core/events/EventTarget.h File third_party/WebKit/Source/core/events/EventTarget.h (right): https://codereview.chromium.org/1479923002/diff/120001/third_party/WebKit/Source/core/events/EventTarget.h#newcode119 third_party/WebKit/Source/core/events/EventTarget.h:119: NotHandled, On 2016/02/22 07:30:18, philipj_UTC7 wrote: > In order ...
4 years, 10 months ago (2016-02-22 15:16:14 UTC) #50
dtapuska
https://codereview.chromium.org/1479923002/diff/120001/third_party/WebKit/Source/core/events/EventTarget.cpp File third_party/WebKit/Source/core/events/EventTarget.cpp (right): https://codereview.chromium.org/1479923002/diff/120001/third_party/WebKit/Source/core/events/EventTarget.cpp#newcode255 third_party/WebKit/Source/core/events/EventTarget.cpp:255: if (!event) { On 2016/02/22 01:40:22, tkent wrote: > ...
4 years, 10 months ago (2016-02-23 19:14:41 UTC) #51
tkent
looks ok. Please address test failures.
4 years, 10 months ago (2016-02-23 23:50:26 UTC) #52
philipj_slow
https://codereview.chromium.org/1479923002/diff/140001/third_party/WebKit/Source/core/events/EventTarget.h File third_party/WebKit/Source/core/events/EventTarget.h (right): https://codereview.chromium.org/1479923002/diff/140001/third_party/WebKit/Source/core/events/EventTarget.h#newcode83 third_party/WebKit/Source/core/events/EventTarget.h:83: // Event was not consumed by application or system. ...
4 years, 10 months ago (2016-02-24 10:19:51 UTC) #53
dtapuska
https://codereview.chromium.org/1479923002/diff/140001/third_party/WebKit/Source/core/events/EventTarget.h File third_party/WebKit/Source/core/events/EventTarget.h (right): https://codereview.chromium.org/1479923002/diff/140001/third_party/WebKit/Source/core/events/EventTarget.h#newcode83 third_party/WebKit/Source/core/events/EventTarget.h:83: // Event was not consumed by application or system. ...
4 years, 10 months ago (2016-02-24 22:14:16 UTC) #54
philipj_slow
New descriptions look good, I haven't looked at anything else though. https://codereview.chromium.org/1479923002/diff/160001/third_party/WebKit/Source/core/events/EventTarget.h File third_party/WebKit/Source/core/events/EventTarget.h (right): ...
4 years, 10 months ago (2016-02-25 04:21:27 UTC) #55
dtapuska
PTAL https://codereview.chromium.org/1479923002/diff/160001/third_party/WebKit/Source/core/events/EventTarget.h File third_party/WebKit/Source/core/events/EventTarget.h (right): https://codereview.chromium.org/1479923002/diff/160001/third_party/WebKit/Source/core/events/EventTarget.h#newcode85 third_party/WebKit/Source/core/events/EventTarget.h:85: // Event was canceled by event handler; ie. ...
4 years, 10 months ago (2016-02-25 14:20:24 UTC) #56
philipj_slow
Checked the whole CL, LGTM % nits. https://codereview.chromium.org/1479923002/diff/180001/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp File third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp (right): https://codereview.chromium.org/1479923002/diff/180001/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp#newcode73 third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp:73: // Log ...
4 years, 10 months ago (2016-02-25 15:23:46 UTC) #57
dtapuska
https://codereview.chromium.org/1479923002/diff/180001/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp File third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp (right): https://codereview.chromium.org/1479923002/diff/180001/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp#newcode73 third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp:73: // Log to console if event was not handled. ...
4 years, 10 months ago (2016-02-25 22:06:10 UTC) #58
tkent
lgtm
4 years, 10 months ago (2016-02-25 23:16:20 UTC) #59
philipj_slow
Looks fabulous! https://codereview.chromium.org/1479923002/diff/200001/third_party/WebKit/Source/core/core.gypi File third_party/WebKit/Source/core/core.gypi (right): https://codereview.chromium.org/1479923002/diff/200001/third_party/WebKit/Source/core/core.gypi#newcode2646 third_party/WebKit/Source/core/core.gypi:2646: 'events/EventDispatcResult.h', I think this typo has upset ...
4 years, 10 months ago (2016-02-26 04:11:53 UTC) #60
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1479923002/220001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1479923002/220001
4 years, 10 months ago (2016-02-26 14:48:23 UTC) #63
commit-bot: I haz the power
Committed patchset #12 (id:220001)
4 years, 10 months ago (2016-02-26 14:57:54 UTC) #65
commit-bot: I haz the power
Patchset 12 (id:??) landed as https://crrev.com/c68b1aecf681958457d0f6c09c8e379ed02b6b80 Cr-Commit-Position: refs/heads/master@{#377885}
4 years, 10 months ago (2016-02-26 14:59:28 UTC) #67
Rick Byers
4 years, 10 months ago (2016-02-26 15:06:42 UTC) #68
Message was sent while issue was closed.
I didn't (re)review the whole CL (tkent@ and philip@ are experts here - I'm
unlikely to add anything).  I just wanted to say that I really like the clear
enum definition - thank you!

Powered by Google App Engine
This is Rietveld 408576698