Index: Source/core/dom/Text.h |
diff --git a/Source/core/dom/Text.h b/Source/core/dom/Text.h |
index 978131a41663888baa2fc05f89a54c7348dca11f..35276245786c2ce67c7acc8e0576e64e9b2c6a41 100644 |
--- a/Source/core/dom/Text.h |
+++ b/Source/core/dom/Text.h |
@@ -28,7 +28,7 @@ |
namespace blink { |
class ExceptionState; |
-class RenderText; |
+class LayoutText; |
class Text : public CharacterData { |
DEFINE_WRAPPERTYPEINFO(); |
@@ -38,7 +38,7 @@ public: |
static PassRefPtrWillBeRawPtr<Text> create(Document&, const String&); |
static PassRefPtrWillBeRawPtr<Text> createEditingText(Document&, const String&); |
- RenderText* renderer() const; |
+ LayoutText* renderer() const; |
// mergeNextSiblingNodesIfPossible() merges next sibling nodes if possible |
// then returns a node not merged. |
@@ -52,7 +52,7 @@ public: |
void recalcTextStyle(StyleRecalcChange, Text* nextTextSibling); |
bool textRendererIsNeeded(const LayoutStyle&, const LayoutObject& parent); |
- RenderText* createTextRenderer(LayoutStyle*); |
+ LayoutText* createTextRenderer(LayoutStyle*); |
void updateTextRenderer(unsigned offsetOfReplacedData, unsigned lengthOfReplacedData, RecalcStyleBehavior = DoNotRecalcStyle); |
virtual void attach(const AttachContext& = AttachContext()) override final; |