Index: third_party/WebKit/Source/core/dom/ElementRareData.h |
diff --git a/third_party/WebKit/Source/core/dom/ElementRareData.h b/third_party/WebKit/Source/core/dom/ElementRareData.h |
index 9422f5c891f417af0d66fa2e4ca28856bd3f9d3f..05406e6ebdb32c8867ccdde6b7dd2d77a1e5ae87 100644 |
--- a/third_party/WebKit/Source/core/dom/ElementRareData.h |
+++ b/third_party/WebKit/Source/core/dom/ElementRareData.h |
@@ -50,7 +50,7 @@ class ResizeObserver; |
class ElementRareData : public NodeRareData { |
public: |
- static ElementRareData* Create(NodeLayoutData* node_layout_data) { |
+ static ElementRareData* Create(NodeRenderingData* node_layout_data) { |
return new ElementRareData(node_layout_data); |
} |
@@ -225,7 +225,7 @@ class ElementRareData : public NodeRareData { |
Member<AccessibleNode> accessible_node_; |
- explicit ElementRareData(NodeLayoutData*); |
+ explicit ElementRareData(NodeRenderingData*); |
}; |
DEFINE_TRAIT_FOR_TRACE_WRAPPERS(ElementRareData); |
@@ -233,7 +233,7 @@ inline LayoutSize DefaultMinimumSizeForResizing() { |
return LayoutSize(LayoutUnit::Max(), LayoutUnit::Max()); |
} |
-inline ElementRareData::ElementRareData(NodeLayoutData* node_layout_data) |
+inline ElementRareData::ElementRareData(NodeRenderingData* node_layout_data) |
: NodeRareData(node_layout_data), |
minimum_size_for_resizing_(DefaultMinimumSizeForResizing()), |
class_list_(nullptr) { |