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

Unified Diff: Source/core/dom/FirstLetterPseudoElement.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/dom/Element.cpp ('k') | Source/core/dom/FirstLetterPseudoElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/FirstLetterPseudoElement.h
diff --git a/Source/core/dom/FirstLetterPseudoElement.h b/Source/core/dom/FirstLetterPseudoElement.h
index 0da7c115577f06ecc8896d6fac3374cb88d91f06..525fe1f1b412d53267bf9f3197bef50bffba5e3a 100644
--- a/Source/core/dom/FirstLetterPseudoElement.h
+++ b/Source/core/dom/FirstLetterPseudoElement.h
@@ -32,7 +32,7 @@ namespace blink {
class Element;
class LayoutObject;
-class RenderTextFragment;
+class LayoutTextFragment;
class FirstLetterPseudoElement final : public PseudoElement {
WTF_MAKE_NONCOPYABLE(FirstLetterPseudoElement);
@@ -47,8 +47,8 @@ public:
static LayoutObject* firstLetterTextRenderer(const Element&);
static unsigned firstLetterLength(const String&);
- void setRemainingTextRenderer(RenderTextFragment*);
- RenderTextFragment* remainingTextRenderer() const { return m_remainingTextRenderer; }
+ void setRemainingTextRenderer(LayoutTextFragment*);
+ LayoutTextFragment* remainingTextRenderer() const { return m_remainingTextRenderer; }
void updateTextFragments();
@@ -63,7 +63,7 @@ private:
void attachFirstLetterTextRenderers();
LayoutStyle* styleForFirstLetter(LayoutObject*);
- RenderTextFragment* m_remainingTextRenderer;
+ LayoutTextFragment* m_remainingTextRenderer;
};
DEFINE_ELEMENT_TYPE_CASTS(FirstLetterPseudoElement, isFirstLetterPseudoElement());
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/FirstLetterPseudoElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698