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

Unified Diff: Source/core/dom/ElementRareData.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/Element.cpp ('k') | Source/core/dom/FirstLetterPseudoElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ElementRareData.h
diff --git a/Source/core/dom/ElementRareData.h b/Source/core/dom/ElementRareData.h
index 4061eb380325e2822bcd7980dc6daea120c05f26..4630f9ace1a76e26ff5c19f79f51cea21b7c99e4 100644
--- a/Source/core/dom/ElementRareData.h
+++ b/Source/core/dom/ElementRareData.h
@@ -42,7 +42,7 @@ class HTMLElement;
class ElementRareData : public NodeRareData {
public:
- static ElementRareData* create(RenderObject* renderer)
+ static ElementRareData* create(LayoutObject* renderer)
{
return new ElementRareData(renderer);
}
@@ -151,7 +151,7 @@ private:
RefPtrWillBeMember<PseudoElement> m_generatedFirstLetter;
RefPtrWillBeMember<PseudoElement> m_backdrop;
- explicit ElementRareData(RenderObject*);
+ explicit ElementRareData(LayoutObject*);
};
inline LayoutSize defaultMinimumSizeForResizing()
@@ -159,7 +159,7 @@ inline LayoutSize defaultMinimumSizeForResizing()
return LayoutSize(LayoutUnit::max(), LayoutUnit::max());
}
-inline ElementRareData::ElementRareData(RenderObject* renderer)
+inline ElementRareData::ElementRareData(LayoutObject* renderer)
: NodeRareData(renderer)
, m_tabindex(0)
, m_minimumSizeForResizing(defaultMinimumSizeForResizing())
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/FirstLetterPseudoElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698