Index: Source/core/html/HTMLInputElement.cpp |
diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp |
index 439a5ca2c547038a421a5f07a3f4a85f2a19c797..1001f491c19652fde8f0509c9e28a66afbc1fdab 100644 |
--- a/Source/core/html/HTMLInputElement.cpp |
+++ b/Source/core/html/HTMLInputElement.cpp |
@@ -815,12 +815,12 @@ void HTMLInputElement::finishParsingChildren() |
} |
} |
-bool HTMLInputElement::layoutObjectIsNeeded(const LayoutStyle& style) |
+bool HTMLInputElement::layoutObjectIsNeeded(const ComputedStyle& style) |
{ |
return m_inputType->layoutObjectIsNeeded() && HTMLTextFormControlElement::layoutObjectIsNeeded(style); |
} |
-LayoutObject* HTMLInputElement::createLayoutObject(const LayoutStyle& style) |
+LayoutObject* HTMLInputElement::createLayoutObject(const ComputedStyle& style) |
{ |
return m_inputTypeView->createLayoutObject(style); |
} |
@@ -1895,7 +1895,7 @@ bool HTMLInputElement::supportsAutofocus() const |
return m_inputType->isInteractiveContent(); |
} |
-PassRefPtr<LayoutStyle> HTMLInputElement::customStyleForLayoutObject() |
+PassRefPtr<ComputedStyle> HTMLInputElement::customStyleForLayoutObject() |
{ |
return m_inputTypeView->customStyleForLayoutObject(originalStyleForLayoutObject()); |
} |