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

Unified Diff: cc/trees/transform_node.h

Issue 2612883002: Rename cc property tree node owner_id to owning_layer_id. (Closed)
Patch Set: Created 3 years, 11 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 | « cc/trees/scroll_node.cc ('k') | cc/trees/transform_node.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/transform_node.h
diff --git a/cc/trees/transform_node.h b/cc/trees/transform_node.h
index b94bf9ee2ebf7092a37a20d3226d4dfe087f7f21..b98e83cdae96339fe766cdfc12d15c8bfb40b600 100644
--- a/cc/trees/transform_node.h
+++ b/cc/trees/transform_node.h
@@ -22,9 +22,12 @@ struct CC_EXPORT TransformNode {
TransformNode();
TransformNode(const TransformNode&);
+ // The node index of this node in the transform tree node vector.
int id;
+ // The node index of the parent node in the transform tree node vector.
int parent_id;
- int owner_id;
+ // The layer id of the layer that owns this node.
+ int owning_layer_id;
// The local transform information is combined to form to_parent (ignoring
// snapping) as follows:
« no previous file with comments | « cc/trees/scroll_node.cc ('k') | cc/trees/transform_node.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698