Index: Source/core/html/HTMLFrameElement.cpp |
diff --git a/Source/core/html/HTMLFrameElement.cpp b/Source/core/html/HTMLFrameElement.cpp |
index 677dc453daa96f98c10942b83ff8daf37a367166..79ba33c37c3be010b22440ad0b1f03f5ecca8d08 100644 |
--- a/Source/core/html/HTMLFrameElement.cpp |
+++ b/Source/core/html/HTMLFrameElement.cpp |
@@ -42,13 +42,13 @@ inline HTMLFrameElement::HTMLFrameElement(Document& document) |
DEFINE_NODE_FACTORY(HTMLFrameElement) |
-bool HTMLFrameElement::layoutObjectIsNeeded(const LayoutStyle&) |
+bool HTMLFrameElement::layoutObjectIsNeeded(const ComputedStyle&) |
{ |
// For compatibility, frames render even when display: none is set. |
return isURLAllowed(); |
} |
-LayoutObject* HTMLFrameElement::createLayoutObject(const LayoutStyle&) |
+LayoutObject* HTMLFrameElement::createLayoutObject(const ComputedStyle&) |
{ |
return new LayoutFrame(this); |
} |