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

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

Issue 926193003: Move rendering/RenderBox to layout/LayoutBox. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/layout/LayoutObject.cpp ('k') | Source/core/layout/LayoutObjectChildList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutObjectChildList.h
diff --git a/Source/core/layout/LayoutObjectChildList.h b/Source/core/layout/LayoutObjectChildList.h
index cbc640bab7b8d5cb58ad551470c88da84bbb9cda..7bb23a787d2f58cbb720ac6c8a34555997a366a7 100644
--- a/Source/core/layout/LayoutObjectChildList.h
+++ b/Source/core/layout/LayoutObjectChildList.h
@@ -45,7 +45,7 @@ public:
LayoutObject* firstChild() const { return m_firstChild; }
LayoutObject* lastChild() const { return m_lastChild; }
- // FIXME: Temporary while RenderBox still exists. Eventually this will just happen during insert/append/remove methods on the child list, and nobody
+ // FIXME: Temporary while LayoutBox still exists. Eventually this will just happen during insert/append/remove methods on the child list, and nobody
// will need to manipulate firstChild or lastChild directly.
void setFirstChild(LayoutObject* child) { m_firstChild = child; }
void setLastChild(LayoutObject* child) { m_lastChild = child; }
« no previous file with comments | « Source/core/layout/LayoutObject.cpp ('k') | Source/core/layout/LayoutObjectChildList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698