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

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

Powered by Google App Engine
This is Rietveld 408576698