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

Unified Diff: Source/core/layout/CounterNode.cpp

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/CounterNode.h ('k') | Source/core/layout/HitTestResult.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
}
« no previous file with comments | « Source/core/layout/CounterNode.h ('k') | Source/core/layout/HitTestResult.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698