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

Unified Diff: Source/core/frame/FrameView.cpp

Issue 869323003: Oilpan: move RenderObjects off heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review-induced improvements Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/frame/FrameView.h ('k') | Source/core/layout/LayoutTableCellTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameView.cpp
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
index 6633b1be6850dcd7980e7b7834dfd6b6f8b44d55..4ea8b0568feb3d859de358174f79de1659d8eab5 100644
--- a/Source/core/frame/FrameView.cpp
+++ b/Source/core/frame/FrameView.cpp
@@ -212,12 +212,9 @@ void FrameView::dispose()
void FrameView::trace(Visitor* visitor)
{
#if ENABLE(OILPAN)
- visitor->trace(m_partUpdateSet);
- visitor->trace(m_parts);
visitor->trace(m_frame);
visitor->trace(m_nodeToDraw);
visitor->trace(m_maintainScrollPositionAnchor);
- visitor->trace(m_scrollCorner);
visitor->trace(m_autoSizeInfo);
visitor->trace(m_horizontalScrollbar);
visitor->trace(m_verticalScrollbar);
@@ -1162,7 +1159,7 @@ void FrameView::removePart(RenderPart* object)
void FrameView::updateWidgetPositions()
{
- WillBeHeapVector<RefPtrWillBeMember<RenderPart>> parts;
+ Vector<RefPtr<RenderPart>> parts;
copyToVector(m_parts, parts);
// Script or plugins could detach the frame so abort processing if that happens.
« no previous file with comments | « Source/core/frame/FrameView.h ('k') | Source/core/layout/LayoutTableCellTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698