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

Unified Diff: third_party/WebKit/Source/core/dom/ElementRareData.h

Issue 2830583002: Rename NodeLayoutData -> NodeRenderingData (Closed)
Patch Set: Rebase Created 3 years, 8 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 | « no previous file | third_party/WebKit/Source/core/dom/Node.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698