Index: Source/core/html/HTMLFrameSetElement.cpp |
diff --git a/Source/core/html/HTMLFrameSetElement.cpp b/Source/core/html/HTMLFrameSetElement.cpp |
index a8743110ec6aeb1b7a81649bb503ebf52d8a2cd2..9cac198ee0b4b4eb7f9b08b0b83aeef4d25fdb28 100644 |
--- a/Source/core/html/HTMLFrameSetElement.cpp |
+++ b/Source/core/html/HTMLFrameSetElement.cpp |
@@ -147,14 +147,14 @@ void HTMLFrameSetElement::parseAttribute(const QualifiedName& name, const Atomic |
HTMLElement::parseAttribute(name, value); |
} |
-bool HTMLFrameSetElement::layoutObjectIsNeeded(const LayoutStyle& style) |
+bool HTMLFrameSetElement::layoutObjectIsNeeded(const ComputedStyle& style) |
{ |
// For compatibility, frames render even when display: none is set. |
// However, we delay creating a renderer until stylesheets have loaded. |
return style.isStyleAvailable(); |
} |
-LayoutObject* HTMLFrameSetElement::createLayoutObject(const LayoutStyle& style) |
+LayoutObject* HTMLFrameSetElement::createLayoutObject(const ComputedStyle& style) |
{ |
if (style.hasContent()) |
return LayoutObject::createObject(this, style); |