| Index: Source/core/rendering/RenderBlock.cpp
|
| diff --git a/Source/core/rendering/RenderBlock.cpp b/Source/core/rendering/RenderBlock.cpp
|
| index 2098994a11bbe97eb03fbde5ba4307ea40fdca2e..5904ebd27ab0fbf205a7b55a81d1843b84aa7437 100644
|
| --- a/Source/core/rendering/RenderBlock.cpp
|
| +++ b/Source/core/rendering/RenderBlock.cpp
|
| @@ -160,12 +160,6 @@
|
| // By default, subclasses do not have inline children.
|
| }
|
|
|
| -void RenderBlock::trace(Visitor* visitor)
|
| -{
|
| - visitor->trace(m_children);
|
| - RenderBox::trace(visitor);
|
| -}
|
| -
|
| static void removeBlockFromDescendantAndContainerMaps(RenderBlock* block, TrackedDescendantsMap*& descendantMap, TrackedContainerMap*& containerMap)
|
| {
|
| if (OwnPtr<TrackedRendererListHashSet> descendantSet = descendantMap->take(block)) {
|
| @@ -1056,7 +1050,7 @@
|
| }
|
|
|
| child->children()->setFirstChild(0);
|
| - child->m_next = nullptr;
|
| + child->m_next = 0;
|
|
|
| // Remove all the information in the flow thread associated with the leftover anonymous block.
|
| child->removeFromRenderFlowThread();
|
|
|