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

Unified Diff: Source/core/paint/TextPainter.h

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/paint/InlineTextBoxPainter.cpp ('k') | Source/core/paint/TextPainter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/TextPainter.h
diff --git a/Source/core/paint/TextPainter.h b/Source/core/paint/TextPainter.h
index b84f97e7cd50857aa32e14b050f7dde1a29edf3a..1cee63d22c02cb68debef04b9d79e035457f8cf7 100644
--- a/Source/core/paint/TextPainter.h
+++ b/Source/core/paint/TextPainter.h
@@ -19,7 +19,7 @@ namespace blink {
class Font;
class GraphicsContext;
class GraphicsContextStateSaver;
-class RenderCombineText;
+class LayoutTextCombine;
class LayoutObject;
class LayoutStyle;
class ShadowList;
@@ -34,7 +34,7 @@ public:
~TextPainter();
void setEmphasisMark(const AtomicString&, TextEmphasisPosition);
- void setCombinedText(RenderCombineText* combinedText) { m_combinedText = combinedText; }
+ void setCombinedText(LayoutTextCombine* combinedText) { m_combinedText = combinedText; }
static void updateGraphicsContext(GraphicsContext*, const Style&, bool horizontal, GraphicsContextStateSaver&);
@@ -87,7 +87,7 @@ private:
bool m_horizontal;
AtomicString m_emphasisMark;
int m_emphasisMarkOffset;
- RenderCombineText* m_combinedText;
+ LayoutTextCombine* m_combinedText;
};
inline AffineTransform TextPainter::rotation(const FloatRectWillBeLayoutRect& boxRect, RotationDirection rotationDirection)
« no previous file with comments | « Source/core/paint/InlineTextBoxPainter.cpp ('k') | Source/core/paint/TextPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698