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

Unified Diff: Source/core/layout/line/LineBoxList.cpp

Issue 940373003: Rename RenderText to LayoutText (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Merge w/HEAD again 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
Index: Source/core/layout/line/LineBoxList.cpp
diff --git a/Source/core/layout/line/LineBoxList.cpp b/Source/core/layout/line/LineBoxList.cpp
index 8d23968d0a82f27d011799f24a59abc4eb2d12a5..70b943a90a96826c28a06feaad0aa07498cadee3 100644
--- a/Source/core/layout/line/LineBoxList.cpp
+++ b/Source/core/layout/line/LineBoxList.cpp
@@ -266,7 +266,7 @@ void LineBoxList::dirtyLinesFromChangedChild(LayoutObject* container, LayoutObje
if (wrapper)
box = &wrapper->root();
} else if (curr->isText()) {
- InlineTextBox* textBox = toRenderText(curr)->lastTextBox();
+ InlineTextBox* textBox = toLayoutText(curr)->lastTextBox();
if (textBox)
box = &textBox->root();
} else if (curr->isRenderInline()) {

Powered by Google App Engine
This is Rietveld 408576698