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

Unified Diff: Source/core/dom/NodeRareData.h

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/dom/Node.cpp ('k') | Source/core/dom/NodeRareData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/NodeRareData.h
diff --git a/Source/core/dom/NodeRareData.h b/Source/core/dom/NodeRareData.h
index 6c661b5a790872bb42f67f32e8b5ff1a9481423e..ede7db934c0ce7f4802ca75d7e41be4392cc1faf 100644
--- a/Source/core/dom/NodeRareData.h
+++ b/Source/core/dom/NodeRareData.h
@@ -59,7 +59,7 @@ class NodeRareData : public NoBaseWillBeGarbageCollectedFinalized<NodeRareData>,
WTF_MAKE_NONCOPYABLE(NodeRareData);
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
- static NodeRareData* create(RenderObject* renderer)
+ static NodeRareData* create(LayoutObject* renderer)
{
return new NodeRareData(renderer);
}
@@ -112,7 +112,7 @@ public:
void finalizeGarbageCollectedObject();
protected:
- explicit NodeRareData(RenderObject* renderer)
+ explicit NodeRareData(LayoutObject* renderer)
: NodeRareDataBase(renderer)
, m_connectedFrameCount(0)
, m_elementFlags(0)
« no previous file with comments | « Source/core/dom/Node.cpp ('k') | Source/core/dom/NodeRareData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698