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

Issue 20123003: [oilpan] The Node hierarchy should have correct accept method chains (Closed)

Created:
7 years, 5 months ago by haraken
Modified:
7 years, 5 months ago
CC:
blink-reviews, adamk+oilpan_chromium.org, abarth-chromium
Visibility:
Public.

Description

[oilpan] The Node hierarchy should have correct accept call chains This CL guarantees the following points: - All classes under Node (except SVG classes) have acceptHeapVisitor. - Members in each class are visited in the acceptHeapVisitor. - The acceptHeapVisitor is redirected to acceptHeapVisitor of the super class. I'll rename acceptHeapVisitor to accept in a separate CL. R=ager@chromium.org Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=154915

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Total comments: 8

Patch Set 6 : #

Patch Set 7 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+444 lines, -84 lines) Patch
Source/core/dom/Attr.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/Attr.cpp View 1 2 3 4 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/CDATASection.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/CDATASection.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/CharacterData.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/CharacterData.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/Comment.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/Comment.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/ContainerNode.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/ContainerNode.cpp View 1 2 3 4 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/Document.h View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
Source/core/dom/DocumentFragment.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/DocumentFragment.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/DocumentType.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/DocumentType.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/Element.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/Element.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/Entity.h View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/EntityReference.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/EntityReference.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/Notation.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/Notation.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/ProcessingInstruction.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/ProcessingInstruction.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/PseudoElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/PseudoElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/ShadowRoot.h View 2 chunks +2 lines, -1 line 0 comments Download
Source/core/dom/ShadowRoot.cpp View 2 chunks +6 lines, -6 lines 0 comments Download
Source/core/dom/StyledElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/StyledElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/dom/TemplateContentDocumentFragment.h View 2 chunks +8 lines, -2 lines 0 comments Download
Source/core/dom/Text.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/dom/Text.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/FileInputType.cpp View 2 chunks +7 lines, -0 lines 0 comments Download
Source/core/html/HTMLAnchorElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
Source/core/html/HTMLAnchorElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLAreaElement.h View 1 chunk +1 line, -1 line 0 comments Download
Source/core/html/HTMLAreaElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLAudioElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/HTMLAudioElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLBDIElement.h View 1 chunk +4 lines, -1 line 0 comments Download
Source/core/html/HTMLBRElement.h View 1 chunk +1 line, -1 line 0 comments Download
Source/core/html/HTMLBRElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLBaseElement.h View 1 chunk +1 line, -1 line 0 comments Download
Source/core/html/HTMLBaseElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLBaseFontElement.h View 1 chunk +1 line, -1 line 0 comments Download
Source/core/html/HTMLBaseFontElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLBodyElement.h View 1 chunk +1 line, -1 line 0 comments Download
Source/core/html/HTMLBodyElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLCanvasElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/HTMLCanvasElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLDivElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
Source/core/html/HTMLDocument.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/HTMLDocument.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/HTMLElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLFieldSetElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
Source/core/html/HTMLFormControlElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
Source/core/html/HTMLFormControlElementWithState.h View 2 chunks +2 lines, -2 lines 0 comments Download
Source/core/html/HTMLFormElement.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/HTMLFormElement.cpp View 1 2 3 4 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLHRElement.h View 1 chunk +1 line, -1 line 0 comments Download
Source/core/html/HTMLHRElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLImageElement.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/HTMLImageElement.cpp View 1 2 3 4 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLInputElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
Source/core/html/HTMLKeygenElement.cpp View 2 chunks +5 lines, -5 lines 0 comments Download
Source/core/html/HTMLMediaElement.h View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/HTMLMediaElement.cpp View 1 2 3 4 5 2 chunks +6 lines, -0 lines 0 comments Download
Source/core/html/HTMLMeterElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
Source/core/html/HTMLOptionElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/HTMLOptionElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLProgressElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
Source/core/html/HTMLScriptElement.cpp View 1 chunk +3 lines, -0 lines 0 comments Download
Source/core/html/HTMLSelectElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
Source/core/html/HTMLSelectElement.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
Source/core/html/HTMLSourceElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/HTMLSourceElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLTemplateElement.h View 1 chunk +3 lines, -1 line 0 comments Download
Source/core/html/HTMLTemplateElement.cpp View 3 chunks +10 lines, -3 lines 0 comments Download
Source/core/html/HTMLTextAreaElement.h View 1 chunk +1 line, -1 line 0 comments Download
Source/core/html/HTMLTextAreaElement.cpp View 2 chunks +8 lines, -7 lines 0 comments Download
Source/core/html/HTMLTextFormControlElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
Source/core/html/HTMLTrackElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/HTMLTrackElement.cpp View 1 chunk +4 lines, -0 lines 0 comments Download
Source/core/html/HTMLUnknownElement.h View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLVideoElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/HTMLVideoElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/HTMLViewSourceDocument.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/HTMLViewSourceDocument.cpp View 1 2 3 4 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/ImageDocument.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/ImageDocument.cpp View 1 2 3 4 3 chunks +13 lines, -0 lines 0 comments Download
Source/core/html/LabelableElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/LabelableElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/MediaDocument.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/MediaDocument.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/PluginDocument.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/PluginDocument.cpp View 1 2 3 4 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/TextDocument.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/TextDocument.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/shadow/ClearButtonElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/shadow/ClearButtonElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/shadow/DateTimeFieldElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
Source/core/html/shadow/DateTimeNumericFieldElement.h View 2 chunks +2 lines, -2 lines 0 comments Download
Source/core/html/shadow/DetailsMarkerControl.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/shadow/DetailsMarkerControl.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/shadow/HTMLContentElement.h View 1 chunk +2 lines, -2 lines 0 comments Download
Source/core/html/shadow/HTMLContentElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
Source/core/html/shadow/HTMLShadowElement.cpp View 1 chunk +1 line, -1 line 0 comments Download
Source/core/html/shadow/InsertionPoint.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/shadow/InsertionPoint.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/shadow/MediaControlElements.h View 3 chunks +5 lines, -4 lines 0 comments Download
Source/core/html/shadow/MediaControlElements.cpp View 7 chunks +9 lines, -5 lines 0 comments Download
Source/core/html/shadow/PickerIndicatorElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/shadow/PickerIndicatorElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/shadow/SpinButtonElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/shadow/SpinButtonElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/core/html/track/WebVTTElement.h View 1 chunk +2 lines, -0 lines 0 comments Download
Source/core/html/track/WebVTTElement.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
Source/heap/Handle.h View 1 2 3 3 chunks +16 lines, -11 lines 0 comments Download
Source/heap/Visitor.h View 2 chunks +10 lines, -2 lines 0 comments Download

Messages

Total messages: 10 (0 generated)
haraken
Several tests are crashing probably due to Member mis-visiting. Not yet for review. (I'd hope ...
7 years, 5 months ago (2013-07-25 06:14:37 UTC) #1
haraken
Looks like the remaining issue is HandleScope overflow. http://haraken-pcz2.tok.corp.google.com/oilpan-bot/try-results/296950/layout-test-results/results.html 532 tests are crashing.
7 years, 5 months ago (2013-07-25 10:43:56 UTC) #2
haraken
I begin to think that maybe we shouldn't land this CL. This CL handlifies all ...
7 years, 5 months ago (2013-07-25 12:31:36 UTC) #3
Mads Ager (chromium)
On 2013/07/25 12:31:36, haraken wrote: > I begin to think that maybe we shouldn't land ...
7 years, 5 months ago (2013-07-25 12:38:30 UTC) #4
Mads Ager (chromium)
On 2013/07/25 12:38:30, Mads Ager (chromium) wrote: > On 2013/07/25 12:31:36, haraken wrote: > > ...
7 years, 5 months ago (2013-07-25 12:39:49 UTC) #5
haraken
> I would like the full accept call chain to land soon, so if we ...
7 years, 5 months ago (2013-07-25 12:40:01 UTC) #6
haraken
OK, the Patch Set 5 implements the perfect accept chain for all classes under Node ...
7 years, 5 months ago (2013-07-25 13:08:31 UTC) #7
Mads Ager (chromium)
LGTM! https://codereview.chromium.org/20123003/diff/15001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/20123003/diff/15001/Source/core/html/HTMLMediaElement.cpp#newcode3070 Source/core/html/HTMLMediaElement.cpp:3070: for (unsigned i = 0; !canUseSourceElement && i ...
7 years, 5 months ago (2013-07-25 13:35:12 UTC) #8
haraken
Thanks for reviewing! https://codereview.chromium.org/20123003/diff/15001/Source/core/html/HTMLMediaElement.cpp File Source/core/html/HTMLMediaElement.cpp (right): https://codereview.chromium.org/20123003/diff/15001/Source/core/html/HTMLMediaElement.cpp#newcode3070 Source/core/html/HTMLMediaElement.cpp:3070: for (unsigned i = 0; !canUseSourceElement ...
7 years, 5 months ago (2013-07-25 13:44:49 UTC) #9
haraken
7 years, 5 months ago (2013-07-25 13:45:39 UTC) #10
Message was sent while issue was closed.
Committed patchset #7 manually as r154915.

Powered by Google App Engine
This is Rietveld 408576698