| 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 19 matching lines...) Expand all Loading... |
| 30 optional Transform to_screen = 7; | 30 optional Transform to_screen = 7; |
| 31 optional Transform from_screen = 8; | 31 optional Transform from_screen = 8; |
| 32 | 32 |
| 33 optional int64 target_id = 9; | 33 optional int64 target_id = 9; |
| 34 optional int64 content_target_id = 10; | 34 optional int64 content_target_id = 10; |
| 35 optional int64 source_node_id = 11; | 35 optional int64 source_node_id = 11; |
| 36 optional bool needs_local_transform_update = 12; | 36 optional bool needs_local_transform_update = 12; |
| 37 optional bool is_invertible = 13; | 37 optional bool is_invertible = 13; |
| 38 optional bool ancestors_are_invertible = 14; | 38 optional bool ancestors_are_invertible = 14; |
| 39 optional bool is_animated = 15; | 39 optional bool is_animated = 15; |
| 40 optional bool to_screen_is_animated = 16; | 40 optional bool to_screen_is_potentially_animated = 16; |
| 41 optional bool has_only_translation_animations = 17; | 41 optional bool has_only_translation_animations = 17; |
| 42 optional bool to_screen_has_scale_animation = 18; | 42 optional bool to_screen_has_scale_animation = 18; |
| 43 optional bool flattens_inherited_transform = 19; | 43 optional bool flattens_inherited_transform = 19; |
| 44 optional bool node_and_ancestors_are_flat = 20; | 44 optional bool node_and_ancestors_are_flat = 20; |
| 45 optional bool node_and_ancestors_have_only_integer_translation = 21; | 45 optional bool node_and_ancestors_have_only_integer_translation = 21; |
| 46 optional bool scrolls = 22; | 46 optional bool scrolls = 22; |
| 47 optional bool needs_sublayer_scale = 23; | 47 optional bool needs_sublayer_scale = 23; |
| 48 optional bool affected_by_inner_viewport_bounds_delta_x = 24; | 48 optional bool affected_by_inner_viewport_bounds_delta_x = 24; |
| 49 optional bool affected_by_inner_viewport_bounds_delta_y = 25; | 49 optional bool affected_by_inner_viewport_bounds_delta_y = 25; |
| 50 optional bool affected_by_outer_viewport_bounds_delta_x = 26; | 50 optional bool affected_by_outer_viewport_bounds_delta_x = 26; |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 optional bool changed = 11; | 198 optional bool changed = 11; |
| 199 optional bool full_tree_damaged = 12; | 199 optional bool full_tree_damaged = 12; |
| 200 optional int64 sequence_number = 6; | 200 optional int64 sequence_number = 6; |
| 201 optional bool is_main_thread = 13; | 201 optional bool is_main_thread = 13; |
| 202 optional bool is_active = 14; | 202 optional bool is_active = 14; |
| 203 | 203 |
| 204 optional Vector2dF inner_viewport_container_bounds_delta = 8; | 204 optional Vector2dF inner_viewport_container_bounds_delta = 8; |
| 205 optional Vector2dF outer_viewport_container_bounds_delta = 9; | 205 optional Vector2dF outer_viewport_container_bounds_delta = 9; |
| 206 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; | 206 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; |
| 207 } | 207 } |
| OLD | NEW |