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

Issue 289273002: Oilpan: make DocumentFragment a heap allocated object. (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, eric.carlson_apple.com, apavlov+blink_chromium.org, aandrey+blink_chromium.org, rwlbuis, caseq+blink_chromium.org, arv+blink, malch+blink_chromium.org, blink-reviews-html_chromium.org, yurys+blink_chromium.org, blink-reviews-dom_chromium.org, dglazkov+blink, devtools-reviews_chromium.org, groby+blinkspell_chromium.org, nessy, loislo+blink_chromium.org, lushnikov+blink_chromium.org, eustas+blink_chromium.org, paulirish+reviews_chromium.org, vcarbune.chromium, philipj_slow, gasubic, vsevik+blink_chromium.org, pfeldman+blink_chromium.org, Inactive, sergeyv+blink_chromium.org, watchdog-blink-watchlist_google.com
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Visibility:
Public.

Description

Oilpan: make DocumentFragment a heap allocated object. This relands r174382, as it was reverted while investigating a test failure. R=wibling@chromium.org,zerny@chromium.org,haraken@chromium.org BUG=357163 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=174443

Patch Set 1 #

Patch Set 2 : Tweaks to avoid conflicts with ongoing ShadowRoot CLs #

Total comments: 4

Patch Set 3 : Rebased #

Patch Set 4 : Rebased + add WillBeGarbageCollected FIXME. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+102 lines, -99 lines) Patch
M Source/core/dom/Document.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/Document.cpp View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/dom/DocumentFragment.idl View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/Element.cpp View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M Source/core/dom/Range.h View 2 chunks +5 lines, -5 lines 0 comments Download
M Source/core/dom/Range.cpp View 7 chunks +8 lines, -8 lines 0 comments Download
M Source/core/dom/shadow/ShadowRoot.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/editing/CompositeEditCommand.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/editing/Editor.h View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/editing/Editor.cpp View 3 chunks +3 lines, -3 lines 0 comments Download
M Source/core/editing/EditorCommand.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/editing/MoveSelectionCommand.h View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/editing/MoveSelectionCommand.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/editing/ReplaceSelectionCommand.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/editing/ReplaceSelectionCommand.cpp View 3 chunks +5 lines, -4 lines 0 comments Download
M Source/core/editing/markup.h View 2 chunks +8 lines, -7 lines 0 comments Download
M Source/core/editing/markup.cpp View 13 chunks +19 lines, -19 lines 0 comments Download
M Source/core/events/TextEvent.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/events/TextEvent.cpp View 3 chunks +3 lines, -2 lines 0 comments Download
M Source/core/html/HTMLElement.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/HTMLElement.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/html/track/vtt/VTTCue.h View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/track/vtt/VTTCue.cpp View 2 chunks +5 lines, -6 lines 0 comments Download
M Source/core/html/track/vtt/VTTParser.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/track/vtt/VTTParser.cpp View 3 chunks +4 lines, -4 lines 0 comments Download
M Source/core/inspector/DOMPatchSupport.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/inspector/InspectorDOMAgent.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/page/DragController.cpp View 3 chunks +4 lines, -5 lines 0 comments Download
M Source/core/page/DragData.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/page/DragData.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M Source/core/xml/XSLTProcessor.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/xml/XSLTProcessor.cpp View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 17 (0 generated)
sof
Please take a look. This is based on keishi's two CLs ( https://codereview.chromium.org/288443006/ + https://codereview.chromium.org/283663006/), ...
6 years, 7 months ago (2014-05-18 21:18:15 UTC) #1
haraken
I'd like to take another look after keishi@'s CLs land. https://codereview.chromium.org/289273002/diff/20001/Source/core/dom/DocumentFragment.idl File Source/core/dom/DocumentFragment.idl (right): https://codereview.chromium.org/289273002/diff/20001/Source/core/dom/DocumentFragment.idl#newcode23 ...
6 years, 7 months ago (2014-05-18 22:07:35 UTC) #2
sof
The two CLs has now landed; rebased. https://codereview.chromium.org/289273002/diff/20001/Source/core/dom/DocumentFragment.idl File Source/core/dom/DocumentFragment.idl (right): https://codereview.chromium.org/289273002/diff/20001/Source/core/dom/DocumentFragment.idl#newcode23 Source/core/dom/DocumentFragment.idl:23: WillBeGarbageCollected, On ...
6 years, 7 months ago (2014-05-20 09:19:55 UTC) #3
sof
On 2014/05/20 09:19:55, sof wrote: > The two CLs has now landed; rebased. > sorry, ...
6 years, 7 months ago (2014-05-20 09:22:08 UTC) #4
haraken
https://codereview.chromium.org/289273002/diff/20001/Source/core/dom/DocumentFragment.idl File Source/core/dom/DocumentFragment.idl (right): https://codereview.chromium.org/289273002/diff/20001/Source/core/dom/DocumentFragment.idl#newcode23 Source/core/dom/DocumentFragment.idl:23: WillBeGarbageCollected, On 2014/05/20 09:19:55, sof wrote: > On 2014/05/18 ...
6 years, 7 months ago (2014-05-20 09:32:32 UTC) #5
haraken
(will take a close look in hours.)
6 years, 7 months ago (2014-05-20 09:33:18 UTC) #6
wibling-chromium
lgtm
6 years, 7 months ago (2014-05-20 10:31:19 UTC) #7
zerny-chromium
lgtm
6 years, 7 months ago (2014-05-20 10:58:26 UTC) #8
haraken
LGTM
6 years, 7 months ago (2014-05-20 12:53:06 UTC) #9
sof
Thanks for the reviews. https://codereview.chromium.org/289273002/diff/20001/Source/core/dom/DocumentFragment.idl File Source/core/dom/DocumentFragment.idl (right): https://codereview.chromium.org/289273002/diff/20001/Source/core/dom/DocumentFragment.idl#newcode23 Source/core/dom/DocumentFragment.idl:23: WillBeGarbageCollected, On 2014/05/20 09:32:32, haraken ...
6 years, 7 months ago (2014-05-20 13:15:03 UTC) #10
sof
The CQ bit was checked by sigbjornf@opera.com
6 years, 7 months ago (2014-05-20 13:15:11 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sigbjornf@opera.com/289273002/60001
6 years, 7 months ago (2014-05-20 13:15:28 UTC) #12
commit-bot: I haz the power
Change committed as 174382
6 years, 7 months ago (2014-05-20 14:45:03 UTC) #13
sof
Reopened to reland, the revert in https://codereview.chromium.org/291233003/ turned out not to be behind the test ...
6 years, 7 months ago (2014-05-21 06:16:30 UTC) #14
sof
The CQ bit was checked by sigbjornf@opera.com
6 years, 7 months ago (2014-05-21 06:18:42 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sigbjornf@opera.com/289273002/60001
6 years, 7 months ago (2014-05-21 06:19:00 UTC) #16
commit-bot: I haz the power
6 years, 7 months ago (2014-05-21 06:19:51 UTC) #17
Message was sent while issue was closed.
Change committed as 174443

Powered by Google App Engine
This is Rietveld 408576698