Index: Source/core/html/forms/InputTypeView.cpp |
diff --git a/Source/core/html/forms/InputTypeView.cpp b/Source/core/html/forms/InputTypeView.cpp |
index 247b227a005e7ac319e93bf3c1b6e12aab0a3069..945f0d41756e443f948bfb3e4ad27592f132da92 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(RenderStyle* style) const |
+LayoutObject* InputTypeView::createRenderer(RenderStyle* style) const |
{ |
- return RenderObject::createObject(&element(), style); |
+ return LayoutObject::createObject(&element(), style); |
} |
PassRefPtr<RenderStyle> InputTypeView::customStyleForRenderer(PassRefPtr<RenderStyle> originalStyle) |