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; |
} |