Index: Source/core/layout/LayoutTextControlMultiLine.h |
diff --git a/Source/core/rendering/RenderTextControlMultiLine.h b/Source/core/layout/LayoutTextControlMultiLine.h |
similarity index 83% |
rename from Source/core/rendering/RenderTextControlMultiLine.h |
rename to Source/core/layout/LayoutTextControlMultiLine.h |
index 2644f1bf6ea58a204b837a7a409ada016a51ef15..144fa228250a9c1b6644b5154affcc75348d35fc 100644 |
--- a/Source/core/rendering/RenderTextControlMultiLine.h |
+++ b/Source/core/layout/LayoutTextControlMultiLine.h |
@@ -19,22 +19,22 @@ |
* |
*/ |
-#ifndef RenderTextControlMultiLine_h |
-#define RenderTextControlMultiLine_h |
+#ifndef LayoutTextControlMultiLine_h |
+#define LayoutTextControlMultiLine_h |
-#include "core/rendering/RenderTextControl.h" |
+#include "core/layout/LayoutTextControl.h" |
namespace blink { |
class HTMLTextAreaElement; |
-class RenderTextControlMultiLine final : public RenderTextControl { |
+class LayoutTextControlMultiLine final : public LayoutTextControl { |
public: |
- RenderTextControlMultiLine(HTMLTextAreaElement*); |
- virtual ~RenderTextControlMultiLine(); |
+ LayoutTextControlMultiLine(HTMLTextAreaElement*); |
+ virtual ~LayoutTextControlMultiLine(); |
private: |
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectTextArea || RenderTextControl::isOfType(type); } |
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectTextArea || LayoutTextControl::isOfType(type); } |
virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) override; |
@@ -49,7 +49,7 @@ private: |
virtual LayoutObject* layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope&) override; |
}; |
-DEFINE_LAYOUT_OBJECT_TYPE_CASTS(RenderTextControlMultiLine, isTextArea()); |
+DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTextControlMultiLine, isTextArea()); |
} |