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

Unified Diff: Source/core/layout/LayoutTextControlMultiLine.h

Issue 922423002: Move rendering/RenderTextControl* to layout/LayoutTextControl* (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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/layout/LayoutTextControl.cpp ('k') | Source/core/layout/LayoutTextControlMultiLine.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
}
« no previous file with comments | « Source/core/layout/LayoutTextControl.cpp ('k') | Source/core/layout/LayoutTextControlMultiLine.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698