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

Issue 313813002: Oilpan: Replace RefPtrs to Node and its subclasses in core/dom/ with Oilpan transtion types. (Closed)

Created:
6 years, 6 months ago by tkent
Modified:
6 years, 6 months ago
CC:
blink-reviews, eae+blinkwatch, fs, blink-reviews-wtf_chromium.org, aandrey+blink_chromium.org, rwlbuis, caseq+blink_chromium.org, krit, pfeldman+blink_chromium.org, malch+blink_chromium.org, blink-reviews-html_chromium.org, yurys+blink_chromium.org, abarth-chromium, blink-reviews-dom_chromium.org, dglazkov+blink, devtools-reviews_chromium.org, pdr., loislo+blink_chromium.org, Mads Ager (chromium), sof, lushnikov+blink_chromium.org, eustas+blink_chromium.org, paulirish+reviews_chromium.org, gyuyoung.kim_webkit.org, haraken, Stephen Chennney, gavinp+prerender_chromium.org, kouhei+svg_chromium.org, vsevik+blink_chromium.org, blink-reviews-events_chromium.org, ed+blinkwatch_opera.com, f(malita), sergeyv+blink_chromium.org, kouhei+heap_chromium.org, Mikhail
Visibility:
Public.

Description

Oilpan: Replace RefPtrs to Node and its subclasses in core/dom/ with Oilpan transtion types. - We need to update RefPtrs not in core/dom/ too because argument types of insertBefore/replaceChid/appendChild are changed. - Member<T> should support implicit conversion to RawPtr<SuperClassOfT>. This is necessary for code like: Member<HTMLFooElement> m_foo; .... parent->appendChild(m_foo); BUG=357163 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=175522

Patch Set 1 #

Total comments: 14

Patch Set 2 : rebase and improvements #

Unified diffs Side-by-side diffs Delta from patch set Stats (+41 lines, -37 lines) Patch
M Source/core/dom/ContainerNode.h View 2 chunks +5 lines, -5 lines 0 comments Download
M Source/core/dom/ContainerNode.cpp View 1 5 chunks +6 lines, -6 lines 0 comments Download
M Source/core/dom/ContainerNodeAlgorithms.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/DocumentMarkerControllerTest.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/dom/IncrementLoadEventDelayCount.h View 2 chunks +2 lines, -1 line 0 comments Download
M Source/core/dom/Node.h View 1 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/dom/Node.cpp View 1 3 chunks +3 lines, -3 lines 0 comments Download
M Source/core/dom/RangeBoundaryPoint.h View 5 chunks +6 lines, -6 lines 0 comments Download
M Source/core/dom/RangeTest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLLinkElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/inspector/DOMEditor.cpp View 1 1 chunk +6 lines, -2 lines 0 comments Download
M Source/core/svg/SVGUseElement.cpp View 1 chunk +2 lines, -4 lines 0 comments Download
M Source/platform/heap/Handle.h View 1 chunk +2 lines, -1 line 0 comments Download
M Source/web/WebLocalFrameImpl.cpp View 1 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 14 (0 generated)
tkent
Please review this. This depends on https://codereview.chromium.org/311053003/ and https://codereview.chromium.org/315843004/ . https://codereview.chromium.org/313813002/diff/1/Source/core/dom/ContainerNode.cpp File Source/core/dom/ContainerNode.cpp (right): https://codereview.chromium.org/313813002/diff/1/Source/core/dom/ContainerNode.cpp#newcode332 ...
6 years, 6 months ago (2014-06-04 08:58:46 UTC) #1
haraken
LGTM https://codereview.chromium.org/313813002/diff/1/Source/core/dom/ContainerNode.cpp File Source/core/dom/ContainerNode.cpp (right): https://codereview.chromium.org/313813002/diff/1/Source/core/dom/ContainerNode.cpp#newcode332 Source/core/dom/ContainerNode.cpp:332: RefPtrWillBeRawPtr<Node> removedChild ALLOW_UNUSED = oldChild; On 2014/06/04 08:58:45, ...
6 years, 6 months ago (2014-06-04 09:04:04 UTC) #2
Mads Ager (chromium)
LGTM2 https://codereview.chromium.org/313813002/diff/1/Source/wtf/Assertions.h File Source/wtf/Assertions.h (right): https://codereview.chromium.org/313813002/diff/1/Source/wtf/Assertions.h#newcode384 Source/wtf/Assertions.h:384: inline bool operator==(const RawPtr<thisType>& a, const thisType& b) ...
6 years, 6 months ago (2014-06-04 09:27:26 UTC) #3
zerny-chromium
lgtm for most of it, but I'm not sure where we landed on the issue ...
6 years, 6 months ago (2014-06-04 09:28:18 UTC) #4
zerny-chromium
On 2014/06/04 09:28:18, zerny-chromium wrote: > lgtm for most of it, but I'm not sure ...
6 years, 6 months ago (2014-06-04 09:30:41 UTC) #5
Erik Corry
lgtm https://codereview.chromium.org/313813002/diff/1/Source/core/dom/ContainerNode.cpp File Source/core/dom/ContainerNode.cpp (right): https://codereview.chromium.org/313813002/diff/1/Source/core/dom/ContainerNode.cpp#newcode332 Source/core/dom/ContainerNode.cpp:332: RefPtrWillBeRawPtr<Node> removedChild ALLOW_UNUSED = oldChild; On 2014/06/04 09:04:04, ...
6 years, 6 months ago (2014-06-04 09:35:47 UTC) #6
tkent
https://codereview.chromium.org/313813002/diff/1/Source/core/dom/ContainerNode.cpp File Source/core/dom/ContainerNode.cpp (right): https://codereview.chromium.org/313813002/diff/1/Source/core/dom/ContainerNode.cpp#newcode332 Source/core/dom/ContainerNode.cpp:332: RefPtrWillBeRawPtr<Node> removedChild ALLOW_UNUSED = oldChild; On 2014/06/04 09:35:47, Erik ...
6 years, 6 months ago (2014-06-05 00:22:26 UTC) #7
tkent
The CQ bit was checked by tkent@chromium.org
6 years, 6 months ago (2014-06-05 00:47:02 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tkent@chromium.org/313813002/20001
6 years, 6 months ago (2014-06-05 00:47:09 UTC) #9
tkent
The CQ bit was unchecked by tkent@chromium.org
6 years, 6 months ago (2014-06-05 02:26:30 UTC) #10
tkent
The CQ bit was checked by tkent@chromium.org
6 years, 6 months ago (2014-06-05 02:26:49 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tkent@chromium.org/313813002/20001
6 years, 6 months ago (2014-06-05 02:26:54 UTC) #12
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_blink_rel on tryserver.blink ...
6 years, 6 months ago (2014-06-05 03:01:06 UTC) #13
commit-bot: I haz the power
6 years, 6 months ago (2014-06-05 03:03:17 UTC) #14
Message was sent while issue was closed.
Change committed as 175522

Powered by Google App Engine
This is Rietveld 408576698