Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Unified Diff: Source/core/html/HTMLAppletElement.cpp

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLAppletElement.h ('k') | Source/core/html/HTMLBRElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/core/html/HTMLAppletElement.h ('k') | Source/core/html/HTMLBRElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698