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

Unified Diff: Source/core/dom/RenderTreeBuilder.cpp

Issue 940373003: Rename RenderText to LayoutText (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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/dom/Range.cpp ('k') | Source/core/dom/Text.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/RenderTreeBuilder.cpp
diff --git a/Source/core/dom/RenderTreeBuilder.cpp b/Source/core/dom/RenderTreeBuilder.cpp
index c5fc8d8f244bb6c97a51e1704f2709080f38c331..3cba222e2d6690ec54a008409c8156c9d1518d92 100644
--- a/Source/core/dom/RenderTreeBuilder.cpp
+++ b/Source/core/dom/RenderTreeBuilder.cpp
@@ -36,8 +36,8 @@
#include "core/dom/Text.h"
#include "core/layout/LayoutFullScreen.h"
#include "core/layout/LayoutObject.h"
+#include "core/layout/LayoutText.h"
#include "core/layout/LayoutView.h"
-#include "core/rendering/RenderText.h"
#include "core/svg/SVGElement.h"
#include "platform/RuntimeEnabledFeatures.h"
@@ -153,7 +153,7 @@ void RenderTreeBuilderForText::createRenderer()
ASSERT(m_node->textRendererIsNeeded(*style, *parentRenderer));
- RenderText* newRenderer = m_node->createTextRenderer(style);
+ LayoutText* newRenderer = m_node->createTextRenderer(style);
if (!parentRenderer->isChildAllowed(newRenderer, *style)) {
newRenderer->destroy();
return;
« no previous file with comments | « Source/core/dom/Range.cpp ('k') | Source/core/dom/Text.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698