Index: Source/core/html/HTMLAppletElement.cpp |
diff --git a/Source/core/html/HTMLAppletElement.cpp b/Source/core/html/HTMLAppletElement.cpp |
index 91b3cbb7d897d02c00ae4df2189ac6e4fe06c921..622654b5876cd307245e308165378e640f96392d 100644 |
--- a/Source/core/html/HTMLAppletElement.cpp |
+++ b/Source/core/html/HTMLAppletElement.cpp |
@@ -83,14 +83,14 @@ bool HTMLAppletElement::hasLegalLinkAttribute(const QualifiedName& name) const |
return name == codebaseAttr || HTMLPlugInElement::hasLegalLinkAttribute(name); |
} |
-bool HTMLAppletElement::layoutObjectIsNeeded(const LayoutStyle& style) |
+bool HTMLAppletElement::layoutObjectIsNeeded(const ComputedStyle& style) |
{ |
if (!fastHasAttribute(codeAttr) && !hasOpenShadowRoot()) |
return false; |
return HTMLPlugInElement::layoutObjectIsNeeded(style); |
} |
-LayoutObject* HTMLAppletElement::createLayoutObject(const LayoutStyle& style) |
+LayoutObject* HTMLAppletElement::createLayoutObject(const ComputedStyle& style) |
{ |
if (!canEmbedJava() || hasOpenShadowRoot()) |
return LayoutObject::createObject(this, style); |