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

Unified Diff: Source/core/layout/LayoutPagedFlowThread.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/layout/LayoutPagedFlowThread.h ('k') | Source/core/layout/LayoutPart.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutPagedFlowThread.cpp
diff --git a/Source/core/layout/LayoutPagedFlowThread.cpp b/Source/core/layout/LayoutPagedFlowThread.cpp
index 6e8cbbdb334bb36bdcfd5a32ff3450d4b9d22fff..e611bdf08c2dcb71e92d649a6356ef6af17f24b2 100644
--- a/Source/core/layout/LayoutPagedFlowThread.cpp
+++ b/Source/core/layout/LayoutPagedFlowThread.cpp
@@ -7,11 +7,11 @@
namespace blink {
-LayoutPagedFlowThread* LayoutPagedFlowThread::createAnonymous(Document& document, const LayoutStyle& parentStyle)
+LayoutPagedFlowThread* LayoutPagedFlowThread::createAnonymous(Document& document, const ComputedStyle& parentStyle)
{
LayoutPagedFlowThread* renderer = new LayoutPagedFlowThread();
renderer->setDocumentForAnonymous(&document);
- renderer->setStyle(LayoutStyle::createAnonymousStyleWithDisplay(parentStyle, BLOCK));
+ renderer->setStyle(ComputedStyle::createAnonymousStyleWithDisplay(parentStyle, BLOCK));
return renderer;
}
« no previous file with comments | « Source/core/layout/LayoutPagedFlowThread.h ('k') | Source/core/layout/LayoutPart.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698