| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 syntax = "proto2"; | 5 syntax = "proto2"; |
| 6 | 6 |
| 7 import "element_id.proto"; | 7 import "element_id.proto"; |
| 8 import "rectf.proto"; | 8 import "rectf.proto"; |
| 9 import "scroll_offset.proto"; | 9 import "scroll_offset.proto"; |
| 10 import "size.proto"; | 10 import "size.proto"; |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 [packed = true]; | 192 [packed = true]; |
| 193 repeated TransformCachedNodeData cached_data = 9; | 193 repeated TransformCachedNodeData cached_data = 9; |
| 194 } | 194 } |
| 195 | 195 |
| 196 // Proto for data members of class EffectTree. | 196 // Proto for data members of class EffectTree. |
| 197 message EffectTreeData { | 197 message EffectTreeData { |
| 198 repeated int64 mask_replica_layer_ids = 1 [packed = true]; | 198 repeated int64 mask_replica_layer_ids = 1 [packed = true]; |
| 199 } | 199 } |
| 200 | 200 |
| 201 // Proto for class PropertyTrees. | 201 // Proto for class PropertyTrees. |
| 202 // NEXT ID: 16 | 202 // NEXT ID: 17 |
| 203 message PropertyTrees { | 203 message PropertyTrees { |
| 204 optional PropertyTree transform_tree = 1; | 204 optional PropertyTree transform_tree = 1; |
| 205 optional PropertyTree effect_tree = 2; | 205 optional PropertyTree effect_tree = 2; |
| 206 optional PropertyTree clip_tree = 3; | 206 optional PropertyTree clip_tree = 3; |
| 207 optional PropertyTree scroll_tree = 7; | 207 optional PropertyTree scroll_tree = 7; |
| 208 | 208 |
| 209 optional bool needs_rebuild = 4; | 209 optional bool needs_rebuild = 4; |
| 210 optional bool non_root_surfaces_enabled = 5; | 210 optional bool non_root_surfaces_enabled = 5; |
| 211 optional bool changed = 11; | 211 optional bool changed = 11; |
| 212 optional bool full_tree_damaged = 12; | 212 optional bool full_tree_damaged = 12; |
| 213 optional int64 sequence_number = 6; | 213 optional int64 sequence_number = 6; |
| 214 optional bool is_main_thread = 13; | 214 optional bool is_main_thread = 13; |
| 215 optional bool is_active = 14; | 215 optional bool is_active = 14; |
| 216 optional bool verify_transform_tree_calculations = 16; |
| 216 | 217 |
| 217 optional Vector2dF inner_viewport_container_bounds_delta = 8; | 218 optional Vector2dF inner_viewport_container_bounds_delta = 8; |
| 218 optional Vector2dF outer_viewport_container_bounds_delta = 9; | 219 optional Vector2dF outer_viewport_container_bounds_delta = 9; |
| 219 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; | 220 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; |
| 220 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; | 221 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; |
| 221 } | 222 } |
| OLD | NEW |