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

Issue 280123002: Oilpan: move LiveNodeList collections to the heap. (Closed)

Created:
6 years, 7 months ago by sof
Modified:
6 years, 7 months ago
CC:
blink-reviews, webcomponents-bugzilla_chromium.org, eae+blinkwatch, fs, apavlov+blink_chromium.org, aandrey+blink_chromium.org, rwlbuis, jamesr, caseq+blink_chromium.org, krit, arv+blink, malch+blink_chromium.org, blink-reviews-html_chromium.org, yurys+blink_chromium.org, abarth-chromium, blink-reviews-dom_chromium.org, dglazkov+blink, blink-reviews-bindings_chromium.org, gavinp+loader_chromium.org, jchaffraix+rendering, devtools-reviews_chromium.org, pdr., rune+blink, loislo+blink_chromium.org, zoltan1, lushnikov+blink_chromium.org, eustas+blink_chromium.org, paulirish+reviews_chromium.org, gyuyoung.kim_webkit.org, Nate Chapin, Stephen Chennney, blink-reviews-rendering, kouhei+svg_chromium.org, leviw+renderwatch, vsevik+blink_chromium.org, pfeldman+blink_chromium.org, ed+blinkwatch_opera.com, f(malita), Inactive, sergeyv+blink_chromium.org, watchdog-blink-watchlist_google.com
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Visibility:
Public.

Description

Oilpan: move LiveNodeList collections to the heap. Move LiveNodeListBase and all collection objects based on it (NodeLists and HTMLCollections) to the heap. R=haraken@chromium.org,tkent@chromium.org,ager@chromium.org,erik.corry@gmail.com BUG=357163 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=174377

Patch Set 1 #

Patch Set 2 : Pre-emptively GC a long runnning test #

Total comments: 32

Patch Set 3 : Address WebFormElement FIXME #

Patch Set 4 : Rebase needed #

Total comments: 16

Patch Set 5 : Various review-induced improvements #

Patch Set 6 : Rebased + remove const_cast<> uses #

Patch Set 7 : Rebase needed #

Total comments: 9

Patch Set 8 : pre-increment some for loops instead #

Patch Set 9 : Add extra weak processing #

Total comments: 17

Patch Set 10 : Make NodeListsNodeData::m_owner a strong ref #

Total comments: 5

Patch Set 11 : Have NodeRareData clear out NodeListsNodeData instead. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+557 lines, -356 lines) Patch
M Source/bindings/tests/results/V8TestSpecialOperations.cpp View 1 2 3 4 5 2 chunks +2 lines, -2 lines 0 comments Download
M Source/bindings/v8/V8WindowShell.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/v8/custom/V8WindowCustom.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/accessibility/AXTable.cpp View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/dom/ChildListMutationScope.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/dom/ChildNodeList.h View 2 chunks +5 lines, -3 lines 0 comments Download
M Source/core/dom/ChildNodeList.cpp View 1 2 3 4 2 chunks +9 lines, -0 lines 0 comments Download
M Source/core/dom/ClassCollection.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/dom/ClassCollection.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/ContainerNode.h View 1 2 3 4 5 2 chunks +7 lines, -7 lines 0 comments Download
M Source/core/dom/ContainerNode.cpp View 1 2 3 4 5 6 7 5 chunks +7 lines, -7 lines 0 comments Download
M Source/core/dom/Document.h View 1 2 3 4 5 6 6 chunks +27 lines, -30 lines 0 comments Download
M Source/core/dom/Document.cpp View 1 2 3 4 5 6 7 7 chunks +75 lines, -37 lines 0 comments Download
M Source/core/dom/Element.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/Element.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/EmptyNodeList.h View 2 chunks +5 lines, -3 lines 0 comments Download
M Source/core/dom/EmptyNodeList.cpp View 2 chunks +8 lines, -0 lines 0 comments Download
M Source/core/dom/LiveNodeList.h View 3 chunks +5 lines, -3 lines 0 comments Download
M Source/core/dom/LiveNodeList.cpp View 1 2 3 4 1 chunk +7 lines, -0 lines 0 comments Download
M Source/core/dom/LiveNodeListBase.h View 4 chunks +7 lines, -2 lines 0 comments Download
M Source/core/dom/MutationRecord.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/MutationRecord.cpp View 5 chunks +29 lines, -11 lines 0 comments Download
M Source/core/dom/NameNodeList.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/dom/NameNodeList.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/NamedNodesCollection.h View 1 chunk +6 lines, -4 lines 0 comments Download
M Source/core/dom/NamedNodesCollection.cpp View 1 chunk +6 lines, -0 lines 0 comments Download
M Source/core/dom/Node.h View 1 2 3 4 5 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/dom/Node.cpp View 1 2 3 4 5 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/dom/NodeList.h View 2 chunks +3 lines, -1 line 0 comments Download
M Source/core/dom/NodeList.idl View 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/dom/NodeRareData.h View 1 2 3 4 5 6 7 8 9 10 12 chunks +50 lines, -28 lines 0 comments Download
M Source/core/dom/NodeRareData.cpp View 1 2 3 4 5 6 7 8 9 10 1 chunk +12 lines, -0 lines 0 comments Download
M Source/core/dom/ParentNode.h View 2 chunks +3 lines, -2 lines 0 comments Download
M Source/core/dom/SelectorQuery.h View 3 chunks +3 lines, -2 lines 0 comments Download
M Source/core/dom/SelectorQuery.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/dom/StaticNodeList.h View 1 2 3 4 3 chunks +7 lines, -5 lines 0 comments Download
M Source/core/dom/StaticNodeList.cpp View 1 2 3 4 5 6 7 2 chunks +15 lines, -2 lines 0 comments Download
M Source/core/dom/TagCollection.h View 2 chunks +6 lines, -6 lines 0 comments Download
M Source/core/dom/TagCollection.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/shadow/InsertionPoint.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/shadow/InsertionPoint.cpp View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M Source/core/events/Event.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/events/Event.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/events/TreeScopeEventContext.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/events/TreeScopeEventContext.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/fetch/FontResource.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/CollectionIndexCache.h View 1 2 3 4 5 chunks +9 lines, -3 lines 0 comments Download
M Source/core/html/HTMLAllCollection.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLAllCollection.cpp View 1 2 3 4 4 chunks +8 lines, -7 lines 0 comments Download
M Source/core/html/HTMLAllCollection.idl View 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/html/HTMLCollection.h View 1 2 3 4 5 chunks +24 lines, -15 lines 0 comments Download
M Source/core/html/HTMLCollection.cpp View 1 2 3 4 6 chunks +17 lines, -8 lines 0 comments Download
M Source/core/html/HTMLCollection.idl View 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/html/HTMLDataListElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLDataListElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFieldSetElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFieldSetElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLFormControlsCollection.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLFormControlsCollection.cpp View 1 2 3 4 4 chunks +7 lines, -6 lines 0 comments Download
M Source/core/html/HTMLFormElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLFormElement.cpp View 1 2 3 4 4 chunks +7 lines, -6 lines 0 comments Download
M Source/core/html/HTMLInputElement.cpp View 1 2 3 4 5 6 7 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLMapElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLMapElement.cpp View 1 2 3 4 5 6 7 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLNameCollection.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLNameCollection.cpp View 1 chunk +3 lines, -2 lines 0 comments Download
M Source/core/html/HTMLObjectElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLOptionsCollection.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLOptionsCollection.cpp View 1 2 3 4 3 chunks +6 lines, -5 lines 0 comments Download
M Source/core/html/HTMLSelectElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLSelectElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTableElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTableElement.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTableRowElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLTableRowElement.cpp View 3 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/HTMLTableRowsCollection.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLTableRowsCollection.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/HTMLTableSectionElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLTableSectionElement.cpp View 3 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/LabelableElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/LabelableElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/LabelsNodeList.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/LabelsNodeList.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/html/RadioNodeList.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/RadioNodeList.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/html/forms/ColorInputType.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/forms/RangeInputType.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/inspector/InspectorDOMAgent.cpp View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/rendering/RenderTheme.cpp View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M Source/core/svg/SVGSVGElement.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/svg/SVGSVGElement.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/testing/Internals.h View 1 2 3 4 5 6 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/testing/Internals.cpp View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M Source/web/WebDocument.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/web/WebElementCollection.cpp View 1 chunk +7 lines, -12 lines 0 comments Download
M Source/web/WebFormElement.cpp View 1 2 1 chunk +1 line, -11 lines 0 comments Download
M Source/web/WebNodeList.cpp View 1 chunk +7 lines, -12 lines 0 comments Download
M Source/web/WebPageSerializer.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/web/WebPageSerializerImpl.cpp View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M Source/web/tests/TouchActionTest.cpp View 1 2 3 4 4 chunks +20 lines, -6 lines 0 comments Download
M public/web/WebElementCollection.h View 1 2 3 chunks +8 lines, -6 lines 0 comments Download
M public/web/WebNode.h View 1 2 1 chunk +12 lines, -0 lines 0 comments Download
M public/web/WebNodeList.h View 3 chunks +8 lines, -6 lines 0 comments Download

Messages

Total messages: 39 (0 generated)
sof
Whenever there's next time, please take a look. A larger-than-wished-for CL, but I don't see ...
6 years, 7 months ago (2014-05-11 16:09:23 UTC) #1
haraken
I'll take a look at this CL by the end of today.
6 years, 7 months ago (2014-05-12 07:28:53 UTC) #2
haraken
Here is a first round of comments! https://codereview.chromium.org/280123002/diff/20001/Source/core/dom/Document.cpp File Source/core/dom/Document.cpp (right): https://codereview.chromium.org/280123002/diff/20001/Source/core/dom/Document.cpp#newcode3717 Source/core/dom/Document.cpp:3717: m_nodeLists[list->invalidationType()].remove(WeakMember<LiveNodeListBase>(list)); Isn't ...
6 years, 7 months ago (2014-05-12 12:04:11 UTC) #3
sof
Thanks; first round of answers :) https://codereview.chromium.org/280123002/diff/20001/Source/core/dom/Document.cpp File Source/core/dom/Document.cpp (right): https://codereview.chromium.org/280123002/diff/20001/Source/core/dom/Document.cpp#newcode3717 Source/core/dom/Document.cpp:3717: m_nodeLists[list->invalidationType()].remove(WeakMember<LiveNodeListBase>(list)); On 2014/05/12 ...
6 years, 7 months ago (2014-05-12 12:24:35 UTC) #4
haraken
https://codereview.chromium.org/280123002/diff/20001/Source/web/tests/TouchActionTest.cpp File Source/web/tests/TouchActionTest.cpp (right): https://codereview.chromium.org/280123002/diff/20001/Source/web/tests/TouchActionTest.cpp#newcode192 Source/web/tests/TouchActionTest.cpp:192: WebCore::Heap::collectGarbage(WebCore::ThreadState::HeapPointersOnStack); On 2014/05/12 12:24:36, sof wrote: > On 2014/05/12 ...
6 years, 7 months ago (2014-05-12 12:36:54 UTC) #5
sof
https://codereview.chromium.org/280123002/diff/20001/Source/web/tests/TouchActionTest.cpp File Source/web/tests/TouchActionTest.cpp (right): https://codereview.chromium.org/280123002/diff/20001/Source/web/tests/TouchActionTest.cpp#newcode192 Source/web/tests/TouchActionTest.cpp:192: WebCore::Heap::collectGarbage(WebCore::ThreadState::HeapPointersOnStack); On 2014/05/12 12:36:55, haraken wrote: > On 2014/05/12 ...
6 years, 7 months ago (2014-05-12 12:52:45 UTC) #6
haraken
On 2014/05/12 12:52:45, sof wrote: > https://codereview.chromium.org/280123002/diff/20001/Source/web/tests/TouchActionTest.cpp > File Source/web/tests/TouchActionTest.cpp (right): > > https://codereview.chromium.org/280123002/diff/20001/Source/web/tests/TouchActionTest.cpp#newcode192 > ...
6 years, 7 months ago (2014-05-12 13:06:48 UTC) #7
tkent
https://codereview.chromium.org/280123002/diff/20001/Source/web/WebFormElement.cpp File Source/web/WebFormElement.cpp (right): https://codereview.chromium.org/280123002/diff/20001/Source/web/WebFormElement.cpp#newcode84 Source/web/WebFormElement.cpp:84: // FIXME: The second argument of HTMLFormElement::getNamedElements should be ...
6 years, 7 months ago (2014-05-13 11:20:35 UTC) #8
sof
https://codereview.chromium.org/280123002/diff/20001/Source/web/WebFormElement.cpp File Source/web/WebFormElement.cpp (right): https://codereview.chromium.org/280123002/diff/20001/Source/web/WebFormElement.cpp#newcode84 Source/web/WebFormElement.cpp:84: // FIXME: The second argument of HTMLFormElement::getNamedElements should be ...
6 years, 7 months ago (2014-05-15 09:23:22 UTC) #9
Mads Ager (chromium)
Lots of stuff going on here. Thanks for taking this on Sigbjørn! The set of ...
6 years, 7 months ago (2014-05-15 10:54:22 UTC) #10
sof
https://codereview.chromium.org/280123002/diff/20001/Source/web/tests/TouchActionTest.cpp File Source/web/tests/TouchActionTest.cpp (right): https://codereview.chromium.org/280123002/diff/20001/Source/web/tests/TouchActionTest.cpp#newcode192 Source/web/tests/TouchActionTest.cpp:192: WebCore::Heap::collectGarbage(WebCore::ThreadState::HeapPointersOnStack); On 2014/05/15 10:54:24, Mads Ager (chromium) wrote: > ...
6 years, 7 months ago (2014-05-15 11:39:40 UTC) #11
Mads Ager (chromium)
Here is the relevant part of the stack trace when we get a GC with ...
6 years, 7 months ago (2014-05-15 11:41:04 UTC) #12
sof
On 2014/05/15 11:41:04, Mads Ager (chromium) wrote: > Here is the relevant part of the ...
6 years, 7 months ago (2014-05-15 11:52:34 UTC) #13
Erik Corry
https://codereview.chromium.org/280123002/diff/20001/Source/core/dom/Document.h File Source/core/dom/Document.h (right): https://codereview.chromium.org/280123002/diff/20001/Source/core/dom/Document.h#newcode670 Source/core/dom/Document.h:670: void incrementNodeListWithIdNameCacheCount(); Consider having the same API and ignoring ...
6 years, 7 months ago (2014-05-15 12:34:50 UTC) #14
sof
Followups on the Source/core/ parts; thanks for the on-target feedback throughout. Been debugging WeakMember<const T> ...
6 years, 7 months ago (2014-05-15 22:15:56 UTC) #15
sof
https://codereview.chromium.org/280123002/diff/60001/Source/core/dom/Document.cpp File Source/core/dom/Document.cpp (right): https://codereview.chromium.org/280123002/diff/60001/Source/core/dom/Document.cpp#newcode3716 Source/core/dom/Document.cpp:3716: ASSERT(m_nodeLists[list->invalidationType()].contains(WeakMember<LiveNodeListBase>(list))); On 2014/05/15 22:15:57, sof wrote: > On 2014/05/15 ...
6 years, 7 months ago (2014-05-16 06:12:27 UTC) #16
sof
On 2014/05/16 06:12:27, sof wrote: > https://codereview.chromium.org/280123002/diff/60001/Source/core/dom/Document.cpp > File Source/core/dom/Document.cpp (right): > > https://codereview.chromium.org/280123002/diff/60001/Source/core/dom/Document.cpp#newcode3716 > ...
6 years, 7 months ago (2014-05-16 08:15:22 UTC) #17
sof
On 2014/05/16 08:15:22, sof wrote: ... > > > > That is the problem, > ...
6 years, 7 months ago (2014-05-16 16:06:41 UTC) #18
haraken
Sorry for the review delay, I'll take a look at this tomorrow morning.
6 years, 7 months ago (2014-05-18 22:08:56 UTC) #19
tkent
lgtm. Approved except bindings/. https://codereview.chromium.org/280123002/diff/120001/Source/core/dom/Document.cpp File Source/core/dom/Document.cpp (right): https://codereview.chromium.org/280123002/diff/120001/Source/core/dom/Document.cpp#newcode5750 Source/core/dom/Document.cpp:5750: for (int i = 0; ...
6 years, 7 months ago (2014-05-19 07:23:39 UTC) #20
sof
https://codereview.chromium.org/280123002/diff/120001/Source/core/dom/Document.cpp File Source/core/dom/Document.cpp (right): https://codereview.chromium.org/280123002/diff/120001/Source/core/dom/Document.cpp#newcode5750 Source/core/dom/Document.cpp:5750: for (int i = 0; i < numNodeListInvalidationTypes; i++) ...
6 years, 7 months ago (2014-05-19 07:59:00 UTC) #21
haraken
https://codereview.chromium.org/280123002/diff/120001/Source/core/dom/NodeRareData.h File Source/core/dom/NodeRareData.h (right): https://codereview.chromium.org/280123002/diff/120001/Source/core/dom/NodeRareData.h#newcode232 Source/core/dom/NodeRareData.h:232: RawPtrWillBeMember<NodeList> m_childNodeList; Shouldn't this be a weak member? I ...
6 years, 7 months ago (2014-05-19 09:19:49 UTC) #22
sof
https://codereview.chromium.org/280123002/diff/120001/Source/core/dom/NodeRareData.h File Source/core/dom/NodeRareData.h (right): https://codereview.chromium.org/280123002/diff/120001/Source/core/dom/NodeRareData.h#newcode232 Source/core/dom/NodeRareData.h:232: RawPtrWillBeMember<NodeList> m_childNodeList; On 2014/05/19 09:19:50, haraken wrote: > > ...
6 years, 7 months ago (2014-05-19 21:36:44 UTC) #23
sof
https://codereview.chromium.org/280123002/diff/160001/Source/core/dom/NodeRareData.h File Source/core/dom/NodeRareData.h (right): https://codereview.chromium.org/280123002/diff/160001/Source/core/dom/NodeRareData.h#newcode225 Source/core/dom/NodeRareData.h:225: visitor->trace(m_owner); Not sure about this trace() call (and the ...
6 years, 7 months ago (2014-05-19 21:40:47 UTC) #24
Erik Corry
https://codereview.chromium.org/280123002/diff/60001/Source/web/WebNodeList.cpp File Source/web/WebNodeList.cpp (right): https://codereview.chromium.org/280123002/diff/60001/Source/web/WebNodeList.cpp#newcode53 Source/web/WebNodeList.cpp:53: WebNodeList::WebNodeList(const PassRefPtrWillBeRawPtr<NodeList>& list) Passing a reference to a pointer. ...
6 years, 7 months ago (2014-05-19 21:44:59 UTC) #25
zerny-chromium
https://codereview.chromium.org/280123002/diff/160001/Source/core/dom/NodeRareData.h File Source/core/dom/NodeRareData.h (right): https://codereview.chromium.org/280123002/diff/160001/Source/core/dom/NodeRareData.h#newcode225 Source/core/dom/NodeRareData.h:225: visitor->trace(m_owner); On 2014/05/19 21:40:49, sof wrote: > Not sure ...
6 years, 7 months ago (2014-05-20 06:07:42 UTC) #26
sof
https://codereview.chromium.org/280123002/diff/60001/Source/web/WebNodeList.cpp File Source/web/WebNodeList.cpp (right): https://codereview.chromium.org/280123002/diff/60001/Source/web/WebNodeList.cpp#newcode53 Source/web/WebNodeList.cpp:53: WebNodeList::WebNodeList(const PassRefPtrWillBeRawPtr<NodeList>& list) On 2014/05/19 21:45:00, Erik Corry wrote: ...
6 years, 7 months ago (2014-05-20 06:23:58 UTC) #27
Mads Ager (chromium)
https://codereview.chromium.org/280123002/diff/160001/Source/core/dom/NodeRareData.cpp File Source/core/dom/NodeRareData.cpp (right): https://codereview.chromium.org/280123002/diff/160001/Source/core/dom/NodeRareData.cpp#newcode64 Source/core/dom/NodeRareData.cpp:64: if (m_owner && (m_childNodeList ? 1 : 0) + ...
6 years, 7 months ago (2014-05-20 06:58:55 UTC) #28
zerny-chromium
https://codereview.chromium.org/280123002/diff/160001/Source/core/dom/NodeRareData.h File Source/core/dom/NodeRareData.h (right): https://codereview.chromium.org/280123002/diff/160001/Source/core/dom/NodeRareData.h#newcode225 Source/core/dom/NodeRareData.h:225: visitor->trace(m_owner); On 2014/05/20 06:23:59, sof wrote: > On 2014/05/20 ...
6 years, 7 months ago (2014-05-20 07:57:58 UTC) #29
sof
https://codereview.chromium.org/280123002/diff/160001/Source/core/dom/NodeRareData.h File Source/core/dom/NodeRareData.h (right): https://codereview.chromium.org/280123002/diff/160001/Source/core/dom/NodeRareData.h#newcode175 Source/core/dom/NodeRareData.h:175: static PassOwnPtrWillBeRawPtr<NodeListsNodeData> create(NodeRareData* owner) On 2014/05/20 06:58:57, Mads Ager ...
6 years, 7 months ago (2014-05-20 08:27:47 UTC) #30
Mads Ager (chromium)
LGTM
6 years, 7 months ago (2014-05-20 08:45:08 UTC) #31
sof
haraken: will wait on your input before doing anything here, should there be further issues ...
6 years, 7 months ago (2014-05-20 09:07:29 UTC) #32
Erik Corry
LGTM https://codereview.chromium.org/280123002/diff/180001/Source/core/dom/NodeRareData.cpp File Source/core/dom/NodeRareData.cpp (right): https://codereview.chromium.org/280123002/diff/180001/Source/core/dom/NodeRareData.cpp#newcode73 Source/core/dom/NodeRareData.cpp:73: #if ENABLE(OILPAN) An alternative (I think simpler) way ...
6 years, 7 months ago (2014-05-20 09:09:46 UTC) #33
haraken
Double-checked. LGTM. https://codereview.chromium.org/280123002/diff/180001/Source/core/dom/Document.cpp File Source/core/dom/Document.cpp (right): https://codereview.chromium.org/280123002/diff/180001/Source/core/dom/Document.cpp#newcode5685 Source/core/dom/Document.cpp:5685: for (int type = 1; type < ...
6 years, 7 months ago (2014-05-20 09:27:31 UTC) #34
sof
https://codereview.chromium.org/280123002/diff/180001/Source/core/dom/Document.cpp File Source/core/dom/Document.cpp (right): https://codereview.chromium.org/280123002/diff/180001/Source/core/dom/Document.cpp#newcode5685 Source/core/dom/Document.cpp:5685: for (int type = 1; type < numNodeListInvalidationTypes; ++type) ...
6 years, 7 months ago (2014-05-20 09:54:55 UTC) #35
sof
Thanks for the reviews, sending this one along.
6 years, 7 months ago (2014-05-20 11:48:55 UTC) #36
sof
The CQ bit was checked by sigbjornf@opera.com
6 years, 7 months ago (2014-05-20 11:49:13 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sigbjornf@opera.com/280123002/200001
6 years, 7 months ago (2014-05-20 11:49:29 UTC) #38
commit-bot: I haz the power
6 years, 7 months ago (2014-05-20 13:07:23 UTC) #39
Message was sent while issue was closed.
Change committed as 174377

Powered by Google App Engine
This is Rietveld 408576698