| 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 "rectf.proto"; | 7 import "rectf.proto"; |
| 8 import "scroll_offset.proto"; | 8 import "scroll_offset.proto"; |
| 9 import "size.proto"; | 9 import "size.proto"; |
| 10 import "synced_property.proto"; | 10 import "synced_property.proto"; |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 optional float page_scale_factor = 2; | 180 optional float page_scale_factor = 2; |
| 181 optional float device_scale_factor = 3; | 181 optional float device_scale_factor = 3; |
| 182 optional float device_transform_scale_factor = 4; | 182 optional float device_transform_scale_factor = 4; |
| 183 repeated int64 nodes_affected_by_inner_viewport_bounds_delta = 7 | 183 repeated int64 nodes_affected_by_inner_viewport_bounds_delta = 7 |
| 184 [packed = true]; | 184 [packed = true]; |
| 185 repeated int64 nodes_affected_by_outer_viewport_bounds_delta = 8 | 185 repeated int64 nodes_affected_by_outer_viewport_bounds_delta = 8 |
| 186 [packed = true]; | 186 [packed = true]; |
| 187 } | 187 } |
| 188 | 188 |
| 189 // Proto for class PropertyTrees. | 189 // Proto for class PropertyTrees. |
| 190 // NEXT ID: 14 | 190 // NEXT ID: 16 |
| 191 message PropertyTrees { | 191 message PropertyTrees { |
| 192 optional PropertyTree transform_tree = 1; | 192 optional PropertyTree transform_tree = 1; |
| 193 optional PropertyTree effect_tree = 2; | 193 optional PropertyTree effect_tree = 2; |
| 194 optional PropertyTree clip_tree = 3; | 194 optional PropertyTree clip_tree = 3; |
| 195 optional PropertyTree scroll_tree = 7; | 195 optional PropertyTree scroll_tree = 7; |
| 196 | 196 |
| 197 optional bool needs_rebuild = 4; | 197 optional bool needs_rebuild = 4; |
| 198 optional bool non_root_surfaces_enabled = 5; | 198 optional bool non_root_surfaces_enabled = 5; |
| 199 optional bool changed = 11; | 199 optional bool changed = 11; |
| 200 optional bool full_tree_damaged = 12; | 200 optional bool full_tree_damaged = 12; |
| 201 optional int64 sequence_number = 6; | 201 optional int64 sequence_number = 6; |
| 202 optional bool is_main_thread = 13; | 202 optional bool is_main_thread = 13; |
| 203 optional bool is_active = 14; | 203 optional bool is_active = 14; |
| 204 | 204 |
| 205 optional Vector2dF inner_viewport_container_bounds_delta = 8; | 205 optional Vector2dF inner_viewport_container_bounds_delta = 8; |
| 206 optional Vector2dF outer_viewport_container_bounds_delta = 9; | 206 optional Vector2dF outer_viewport_container_bounds_delta = 9; |
| 207 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; | 207 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; |
| 208 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; |
| 208 } | 209 } |
| OLD | NEW |