Index: Source/core/layout/CounterNode.cpp |
diff --git a/Source/core/layout/CounterNode.cpp b/Source/core/layout/CounterNode.cpp |
index 59f171537608293c359798c6f74b1238c11e108a..36b2317395a2cdbbb0e4c12d3a722bda9b51f334 100644 |
--- a/Source/core/layout/CounterNode.cpp |
+++ b/Source/core/layout/CounterNode.cpp |
@@ -30,7 +30,7 @@ |
namespace blink { |
-CounterNode::CounterNode(RenderObject& o, bool hasResetType, int value) |
+CounterNode::CounterNode(LayoutObject& o, bool hasResetType, int value) |
: m_hasResetType(hasResetType) |
, m_value(value) |
, m_countInParent(0) |
@@ -92,7 +92,7 @@ CounterNode::~CounterNode() |
resetRenderers(); |
} |
-PassRefPtr<CounterNode> CounterNode::create(RenderObject& owner, bool hasResetType, int value) |
+PassRefPtr<CounterNode> CounterNode::create(LayoutObject& owner, bool hasResetType, int value) |
{ |
return adoptRef(new CounterNode(owner, hasResetType, value)); |
} |