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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 optional PropertyTree clip_tree = 3; | 214 optional PropertyTree clip_tree = 3; |
215 optional PropertyTree scroll_tree = 7; | 215 optional PropertyTree scroll_tree = 7; |
216 | 216 |
217 optional bool needs_rebuild = 4; | 217 optional bool needs_rebuild = 4; |
218 optional bool non_root_surfaces_enabled = 5; | 218 optional bool non_root_surfaces_enabled = 5; |
219 optional bool changed = 11; | 219 optional bool changed = 11; |
220 optional bool full_tree_damaged = 12; | 220 optional bool full_tree_damaged = 12; |
221 optional int64 sequence_number = 6; | 221 optional int64 sequence_number = 6; |
222 optional bool is_main_thread = 13; | 222 optional bool is_main_thread = 13; |
223 optional bool is_active = 14; | 223 optional bool is_active = 14; |
224 optional bool verify_transform_tree_calculations = 16; | |
225 | 224 |
226 optional Vector2dF inner_viewport_container_bounds_delta = 8; | 225 optional Vector2dF inner_viewport_container_bounds_delta = 8; |
227 optional Vector2dF outer_viewport_container_bounds_delta = 9; | 226 optional Vector2dF outer_viewport_container_bounds_delta = 9; |
228 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; | 227 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; |
229 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; | 228 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; |
230 } | 229 } |
OLD | NEW |