| 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 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 optional int64 source_node_id = 11; | 30 optional int64 source_node_id = 11; |
| 31 optional bool needs_local_transform_update = 12; | 31 optional bool needs_local_transform_update = 12; |
| 32 optional bool node_and_ancestors_are_animated_or_invertible = 41; | 32 optional bool node_and_ancestors_are_animated_or_invertible = 41; |
| 33 optional bool is_invertible = 13; | 33 optional bool is_invertible = 13; |
| 34 optional bool ancestors_are_invertible = 14; | 34 optional bool ancestors_are_invertible = 14; |
| 35 optional bool has_potential_animation = 15; | 35 optional bool has_potential_animation = 15; |
| 36 optional bool is_currently_animating = 42; | 36 optional bool is_currently_animating = 42; |
| 37 optional bool to_screen_is_potentially_animated = 16; | 37 optional bool to_screen_is_potentially_animated = 16; |
| 38 optional bool has_only_translation_animations = 17; | 38 optional bool has_only_translation_animations = 17; |
| 39 optional bool to_screen_has_scale_animation = 18; | |
| 40 optional bool flattens_inherited_transform = 19; | 39 optional bool flattens_inherited_transform = 19; |
| 41 optional bool node_and_ancestors_are_flat = 20; | 40 optional bool node_and_ancestors_are_flat = 20; |
| 42 optional bool node_and_ancestors_have_only_integer_translation = 21; | 41 optional bool node_and_ancestors_have_only_integer_translation = 21; |
| 43 optional bool scrolls = 22; | 42 optional bool scrolls = 22; |
| 44 optional bool needs_sublayer_scale = 23; | 43 optional bool needs_sublayer_scale = 23; |
| 45 optional bool affected_by_inner_viewport_bounds_delta_x = 24; | 44 optional bool affected_by_inner_viewport_bounds_delta_x = 24; |
| 46 optional bool affected_by_inner_viewport_bounds_delta_y = 25; | 45 optional bool affected_by_inner_viewport_bounds_delta_y = 25; |
| 47 optional bool affected_by_outer_viewport_bounds_delta_x = 26; | 46 optional bool affected_by_outer_viewport_bounds_delta_x = 26; |
| 48 optional bool affected_by_outer_viewport_bounds_delta_y = 27; | 47 optional bool affected_by_outer_viewport_bounds_delta_y = 27; |
| 49 optional bool in_subtree_of_page_scale_layer = 28; | 48 optional bool in_subtree_of_page_scale_layer = 28; |
| 50 optional bool transform_changed = 40; | 49 optional bool transform_changed = 40; |
| 51 optional float post_local_scale_factor = 29; | 50 optional float post_local_scale_factor = 29; |
| 52 optional float local_maximum_animation_target_scale = 30; | |
| 53 optional float local_starting_animation_scale = 31; | |
| 54 optional float combined_maximum_animation_target_scale = 32; | |
| 55 optional float combined_starting_animation_scale = 33; | |
| 56 | 51 |
| 57 optional Vector2dF sublayer_scale = 34; | 52 optional Vector2dF sublayer_scale = 34; |
| 58 optional ScrollOffset scroll_offset = 35; | 53 optional ScrollOffset scroll_offset = 35; |
| 59 optional Vector2dF scroll_snap = 36; | 54 optional Vector2dF scroll_snap = 36; |
| 60 optional Vector2dF source_offset = 37; | 55 optional Vector2dF source_offset = 37; |
| 61 optional Vector2dF source_to_parent = 38; | 56 optional Vector2dF source_to_parent = 38; |
| 62 optional int64 sorting_context_id = 39; | 57 optional int64 sorting_context_id = 39; |
| 63 } | 58 } |
| 64 | 59 |
| 65 // Proto for TransformCachedNodeData | 60 // Proto for TransformCachedNodeData |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 optional bool full_tree_damaged = 12; | 210 optional bool full_tree_damaged = 12; |
| 216 optional int64 sequence_number = 6; | 211 optional int64 sequence_number = 6; |
| 217 optional bool is_main_thread = 13; | 212 optional bool is_main_thread = 13; |
| 218 optional bool is_active = 14; | 213 optional bool is_active = 14; |
| 219 | 214 |
| 220 optional Vector2dF inner_viewport_container_bounds_delta = 8; | 215 optional Vector2dF inner_viewport_container_bounds_delta = 8; |
| 221 optional Vector2dF outer_viewport_container_bounds_delta = 9; | 216 optional Vector2dF outer_viewport_container_bounds_delta = 9; |
| 222 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; | 217 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; |
| 223 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; | 218 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; |
| 224 } | 219 } |
| OLD | NEW |