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

Issue 185413023: Oilpan: move Touch related objects to the oilpan heap. (Closed)

Created:
6 years, 9 months ago by sof
Modified:
6 years, 9 months ago
CC:
blink-reviews, kojih, arv+blink, jsbell+bindings_chromium.org, rwlbuis, sof, eae+blinkwatch, abarth-chromium, marja+watch_chromium.org, dglazkov+blink, adamk+blink_chromium.org, haraken, Nate Chapin, watchdog-blink-watchlist_google.com, Inactive, tkent
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Visibility:
Public.

Description

Oilpan: move Touch related objects to the oilpan heap. In order to do so, make the IDL compiler able to emit code that uses heap vectors if the types involved are of the garbage collected kind. (For the most part done by adopting the changes from https://codereview.chromium.org/173363002 ) R= BUG=340522 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=168607

Patch Set 1 #

Patch Set 2 : Improve element type of variadic vectors #

Total comments: 11

Patch Set 3 : Added 2 binding tests + style #

Total comments: 10

Patch Set 4 : For sequences/array heap args, emit calls to toMemberNativeArray() #

Patch Set 5 : Avoid MSVC local class member function restriction #

Unified diffs Side-by-side diffs Delta from patch set Stats (+259 lines, -64 lines) Patch
M Source/bindings/scripts/v8_callback_interface.py View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/scripts/v8_methods.py View 1 2 3 3 chunks +8 lines, -4 lines 0 comments Download
M Source/bindings/scripts/v8_types.py View 1 2 3 4 chunks +20 lines, -6 lines 0 comments Download
M Source/bindings/templates/methods.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/idls/TestCallbackInterface.idl View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M Source/bindings/tests/idls/TestObjectPython.idl View 2 chunks +5 lines, -0 lines 0 comments Download
M Source/bindings/tests/results/V8TestCallbackInterface.h View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M Source/bindings/tests/results/V8TestCallbackInterface.cpp View 1 2 2 chunks +47 lines, -0 lines 0 comments Download
M Source/bindings/tests/results/V8TestObjectPython.cpp View 1 2 3 4 chunks +60 lines, -0 lines 0 comments Download
M Source/bindings/v8/V8Binding.h View 1 2 3 3 chunks +35 lines, -2 lines 0 comments Download
M Source/core/dom/Document.h View 1 2 3 2 chunks +3 lines, -2 lines 0 comments Download
M Source/core/dom/Document.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/dom/Touch.h View 3 chunks +7 lines, -4 lines 0 comments Download
M Source/core/dom/Touch.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/dom/Touch.idl View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/dom/TouchList.h View 1 3 chunks +11 lines, -8 lines 0 comments Download
M Source/core/dom/TouchList.cpp View 1 1 chunk +5 lines, -0 lines 0 comments Download
M Source/core/dom/TouchList.idl View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M Source/core/events/EventPath.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/events/EventPath.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/events/TouchEvent.h View 2 chunks +6 lines, -6 lines 0 comments Download
M Source/core/events/TouchEventContext.h View 2 chunks +8 lines, -5 lines 0 comments Download
M Source/core/events/TouchEventContext.cpp View 2 chunks +9 lines, -2 lines 0 comments Download
M Source/core/events/TreeScopeEventContext.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/page/EventHandler.cpp View 1 2 3 4 4 chunks +10 lines, -9 lines 0 comments Download
M Source/web/tests/WebInputEventConversionTest.cpp View 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 23 (0 generated)
sof
Please take a look.
6 years, 9 months ago (2014-03-05 07:33:33 UTC) #1
Nils Barth (inactive)
A few style and test quibbles, but otherwise the CG changes are very nice - ...
6 years, 9 months ago (2014-03-05 07:49:12 UTC) #2
sof
https://codereview.chromium.org/185413023/diff/20001/Source/bindings/scripts/v8_callback_interface.py File Source/bindings/scripts/v8_callback_interface.py (right): https://codereview.chromium.org/185413023/diff/20001/Source/bindings/scripts/v8_callback_interface.py#newcode76 Source/bindings/scripts/v8_callback_interface.py:76: if usual_cpp_type.startswith(('Vector', 'WillBeHeapVector')): On 2014/03/05 07:49:13, Nils Barth wrote: ...
6 years, 9 months ago (2014-03-05 08:15:17 UTC) #3
zerny-chromium
Oilpan changes lgtm
6 years, 9 months ago (2014-03-05 09:12:56 UTC) #4
Nils Barth (inactive)
Thanks for revisions; CG & IDL changes LGTM. https://codereview.chromium.org/185413023/diff/20001/Source/bindings/scripts/v8_callback_interface.py File Source/bindings/scripts/v8_callback_interface.py (right): https://codereview.chromium.org/185413023/diff/20001/Source/bindings/scripts/v8_callback_interface.py#newcode76 Source/bindings/scripts/v8_callback_interface.py:76: if ...
6 years, 9 months ago (2014-03-05 09:20:10 UTC) #5
haraken
LGTM with comments. https://codereview.chromium.org/185413023/diff/40001/Source/bindings/scripts/v8_types.py File Source/bindings/scripts/v8_types.py (right): https://codereview.chromium.org/185413023/diff/40001/Source/bindings/scripts/v8_types.py#newcode258 Source/bindings/scripts/v8_types.py:258: (which maps to some vector representation ...
6 years, 9 months ago (2014-03-05 14:52:46 UTC) #6
sof
https://codereview.chromium.org/185413023/diff/40001/Source/bindings/scripts/v8_types.py File Source/bindings/scripts/v8_types.py (right): https://codereview.chromium.org/185413023/diff/40001/Source/bindings/scripts/v8_types.py#newcode258 Source/bindings/scripts/v8_types.py:258: (which maps to some vector representation in C++.) On ...
6 years, 9 months ago (2014-03-05 16:01:11 UTC) #7
sof
The CQ bit was checked by sigbjornf@opera.com
6 years, 9 months ago (2014-03-05 16:01:19 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sigbjornf@opera.com/185413023/60001
6 years, 9 months ago (2014-03-05 16:02:36 UTC) #9
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-05 16:35:21 UTC) #10
commit-bot: I haz the power
Retried try job too often on blink_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=blink_presubmit&number=17395
6 years, 9 months ago (2014-03-05 16:35:21 UTC) #11
sof
Source/web/tests/ adjustment needs Source/web/ owner approval. tkent, abarth: please take a look?
6 years, 9 months ago (2014-03-05 16:54:57 UTC) #12
tkent
lgtm
6 years, 9 months ago (2014-03-06 00:30:51 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sigbjornf@opera.com/185413023/60001
6 years, 9 months ago (2014-03-06 00:31:00 UTC) #14
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-06 00:31:51 UTC) #15
commit-bot: I haz the power
Try jobs failed on following builders: blink_presubmit
6 years, 9 months ago (2014-03-06 00:31:51 UTC) #16
tkent
The CQ bit was checked by tkent@chromium.org
6 years, 9 months ago (2014-03-06 00:52:19 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sigbjornf@opera.com/185413023/60001
6 years, 9 months ago (2014-03-06 00:52:30 UTC) #18
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-06 05:54:55 UTC) #19
commit-bot: I haz the power
Try jobs failed on following builders: win_blink_compile, win_blink_rel
6 years, 9 months ago (2014-03-06 05:54:56 UTC) #20
sof
The CQ bit was checked by sigbjornf@opera.com
6 years, 9 months ago (2014-03-06 07:32:05 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sigbjornf@opera.com/185413023/80001
6 years, 9 months ago (2014-03-06 07:32:19 UTC) #22
commit-bot: I haz the power
6 years, 9 months ago (2014-03-06 09:29:13 UTC) #23
Message was sent while issue was closed.
Change committed as 168607

Powered by Google App Engine
This is Rietveld 408576698