| Index: cc/trees/clip_node.h
|
| diff --git a/cc/trees/clip_node.h b/cc/trees/clip_node.h
|
| index a7c5b45bed6309b22cb806ea5b4951a4c8df9e4b..ca1156d12688a2365de72a7072c0f87c4f6c9a20 100644
|
| --- a/cc/trees/clip_node.h
|
| +++ b/cc/trees/clip_node.h
|
| @@ -20,9 +20,12 @@ struct CC_EXPORT ClipNode {
|
| ClipNode();
|
| ClipNode(const ClipNode& other);
|
|
|
| + // The node index of this node in the clip tree node vector.
|
| int id;
|
| + // The node index of the parent node in the clip tree node vector.
|
| int parent_id;
|
| - int owner_id;
|
| + // The layer id of the layer that owns this node.
|
| + int owning_layer_id;
|
|
|
| enum class ClipType {
|
| // The node doesn't contribute a new clip. It exists only for caching clips
|
|
|