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

Unified Diff: Source/core/layout/LayoutBR.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/layout/LayoutBR.h ('k') | Source/core/layout/LayoutBlock.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutBR.cpp
diff --git a/Source/core/layout/LayoutBR.cpp b/Source/core/layout/LayoutBR.cpp
index 11a8b9d461641c0ba2cb0219bc5252ea985c0a91..7799a0c19564f7b5a9d88a00a79d31a8eb34be72 100644
--- a/Source/core/layout/LayoutBR.cpp
+++ b/Source/core/layout/LayoutBR.cpp
@@ -36,7 +36,7 @@ static PassRefPtr<StringImpl> newlineString()
}
LayoutBR::LayoutBR(Node* node)
- : RenderText(node, newlineString())
+ : LayoutText(node, newlineString())
{
}
@@ -52,7 +52,7 @@ int LayoutBR::lineHeight(bool firstLine) const
void LayoutBR::styleDidChange(StyleDifference diff, const LayoutStyle* oldStyle)
{
- RenderText::styleDidChange(diff, oldStyle);
+ LayoutText::styleDidChange(diff, oldStyle);
}
int LayoutBR::caretMinOffset() const
« no previous file with comments | « Source/core/layout/LayoutBR.h ('k') | Source/core/layout/LayoutBlock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698