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

Unified Diff: Source/core/html/HTMLFrameSetElement.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/HTMLFrameSetElement.h ('k') | Source/core/html/HTMLIFrameElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/core/html/HTMLFrameSetElement.h ('k') | Source/core/html/HTMLIFrameElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698