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

Unified Diff: Source/core/layout/SubtreeLayoutScope.h

Issue 1095043003: Convert LayoutObject renderer names. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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/layout/LayoutView.cpp ('k') | Source/core/layout/SubtreeLayoutScope.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/SubtreeLayoutScope.h
diff --git a/Source/core/layout/SubtreeLayoutScope.h b/Source/core/layout/SubtreeLayoutScope.h
index 7f380493e8324872cbdbf54599c3e442b6e3eac9..d2e2780bab8601449d494bb8da0617e9883fb45f 100644
--- a/Source/core/layout/SubtreeLayoutScope.h
+++ b/Source/core/layout/SubtreeLayoutScope.h
@@ -38,7 +38,7 @@
// e.g. for the purposes of doing a multipass layout.
//
// It should only be used during layout. Outside of layout, you should
-// just call renderer->setNeedsLayout() directly.
+// just call layoutObject->setNeedsLayout() directly.
//
// It ensures that you don't accidentally mark part of the tree as
// needing layout and not actually lay it out.
@@ -56,13 +56,13 @@ public:
void setChildNeedsLayout(LayoutObject* descendant);
LayoutObject& root() { return m_root; }
- void addRendererToLayout(LayoutObject* renderer);
+ void recordObjectMarkedForLayout(LayoutObject*);
private:
LayoutObject& m_root;
#if ENABLE(ASSERT)
- HashSet<LayoutObject*> m_renderersToLayout;
+ HashSet<LayoutObject*> m_layoutObjectsToLayout;
#endif
};
« no previous file with comments | « Source/core/layout/LayoutView.cpp ('k') | Source/core/layout/SubtreeLayoutScope.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698