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

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: 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/paint/TextPainter.h
diff --git a/Source/core/paint/TextPainter.h b/Source/core/paint/TextPainter.h
index b84f97e7cd50857aa32e14b050f7dde1a29edf3a..fe556ae6ea5c990349a7a58adbd6483caea2cfd1 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 LayoutCombineText;
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(LayoutCombineText* 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;
+ LayoutCombineText* m_combinedText;
};
inline AffineTransform TextPainter::rotation(const FloatRectWillBeLayoutRect& boxRect, RotationDirection rotationDirection)

Powered by Google App Engine
This is Rietveld 408576698