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

Unified Diff: Source/core/layout/LayoutObject.cpp

Issue 948343003: Move rendering/RenderGrid to layout/LayoutGrid (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.h ('k') | Source/core/paint/GridPainter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutObject.cpp
diff --git a/Source/core/layout/LayoutObject.cpp b/Source/core/layout/LayoutObject.cpp
index b76aaab7f1f8d4c5357063a49c248a4990ab8063..c90eacddc2211988ff39c43dc26e07477e439939 100644
--- a/Source/core/layout/LayoutObject.cpp
+++ b/Source/core/layout/LayoutObject.cpp
@@ -53,6 +53,7 @@
#include "core/layout/LayoutCounter.h"
#include "core/layout/LayoutFlowThread.h"
#include "core/layout/LayoutGeometryMap.h"
+#include "core/layout/LayoutGrid.h"
#include "core/layout/LayoutImage.h"
#include "core/layout/LayoutImageResourceStyleImage.h"
#include "core/layout/LayoutListItem.h"
@@ -75,7 +76,6 @@
#include "core/paint/ObjectPainter.h"
#include "core/rendering/RenderDeprecatedFlexibleBox.h"
#include "core/rendering/RenderFlexibleBox.h"
-#include "core/rendering/RenderGrid.h"
#include "core/rendering/RenderInline.h"
#include "core/rendering/RenderView.h"
#include "platform/JSONValues.h"
@@ -210,7 +210,7 @@ LayoutObject* LayoutObject::createObject(Element* element, const LayoutStyle& st
return new RenderFlexibleBox(element);
case GRID:
case INLINE_GRID:
- return new RenderGrid(element);
+ return new LayoutGrid(element);
}
return 0;
« no previous file with comments | « Source/core/layout/LayoutObject.h ('k') | Source/core/paint/GridPainter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698