Index: Source/core/html/forms/InputTypeView.cpp |
diff --git a/Source/core/html/forms/InputTypeView.cpp b/Source/core/html/forms/InputTypeView.cpp |
index 42335d68aa238e2f9242f7d7d11c75e125902afe..24d224f05384c264071d4084b191e013e21d3337 100644 |
--- a/Source/core/html/forms/InputTypeView.cpp |
+++ b/Source/core/html/forms/InputTypeView.cpp |
@@ -31,7 +31,7 @@ |
#include "core/dom/shadow/ShadowRoot.h" |
#include "core/html/HTMLFormElement.h" |
#include "core/html/HTMLInputElement.h" |
-#include "core/rendering/RenderObject.h" |
+#include "core/layout/LayoutObject.h" |
namespace blink { |
@@ -97,9 +97,9 @@ PassRefPtrWillBeRawPtr<HTMLFormElement> InputTypeView::formForSubmission() const |
return element().form(); |
} |
-RenderObject* InputTypeView::createRenderer(const RenderStyle& style) const |
+LayoutObject* InputTypeView::createRenderer(const RenderStyle& style) const |
{ |
- return RenderObject::createObject(&element(), style); |
+ return LayoutObject::createObject(&element(), style); |
} |
PassRefPtr<RenderStyle> InputTypeView::customStyleForRenderer(PassRefPtr<RenderStyle> originalStyle) |