| 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 "layer_sticky_position_constraint.proto"; | 8 import "layer_sticky_position_constraint.proto"; |
| 9 import "rectf.proto"; | 9 import "rectf.proto"; |
| 10 import "scroll_offset.proto"; | 10 import "scroll_offset.proto"; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 optional bool ancestors_are_invertible = 14; | 36 optional bool ancestors_are_invertible = 14; |
| 37 optional bool has_potential_animation = 15; | 37 optional bool has_potential_animation = 15; |
| 38 optional bool is_currently_animating = 42; | 38 optional bool is_currently_animating = 42; |
| 39 optional bool to_screen_is_potentially_animated = 16; | 39 optional bool to_screen_is_potentially_animated = 16; |
| 40 optional bool has_only_translation_animations = 17; | 40 optional bool has_only_translation_animations = 17; |
| 41 optional bool flattens_inherited_transform = 19; | 41 optional bool flattens_inherited_transform = 19; |
| 42 optional bool node_and_ancestors_are_flat = 20; | 42 optional bool node_and_ancestors_are_flat = 20; |
| 43 optional bool node_and_ancestors_have_only_integer_translation = 21; | 43 optional bool node_and_ancestors_have_only_integer_translation = 21; |
| 44 optional bool scrolls = 22; | 44 optional bool scrolls = 22; |
| 45 optional bool should_be_snapped = 43; | 45 optional bool should_be_snapped = 43; |
| 46 optional bool affected_by_inner_viewport_bounds_delta_x = 24; | 46 optional bool moved_by_inner_viewport_bounds_delta_x = 24; |
| 47 optional bool affected_by_inner_viewport_bounds_delta_y = 25; | 47 optional bool moved_by_inner_viewport_bounds_delta_y = 25; |
| 48 optional bool affected_by_outer_viewport_bounds_delta_x = 26; | 48 optional bool moved_by_outer_viewport_bounds_delta_x = 26; |
| 49 optional bool affected_by_outer_viewport_bounds_delta_y = 27; | 49 optional bool moved_by_outer_viewport_bounds_delta_y = 27; |
| 50 optional bool in_subtree_of_page_scale_layer = 28; | 50 optional bool in_subtree_of_page_scale_layer = 28; |
| 51 optional bool transform_changed = 40; | 51 optional bool transform_changed = 40; |
| 52 optional float post_local_scale_factor = 29; | 52 optional float post_local_scale_factor = 29; |
| 53 | 53 |
| 54 optional ScrollOffset scroll_offset = 35; | 54 optional ScrollOffset scroll_offset = 35; |
| 55 optional Vector2dF snap_amount = 36; | 55 optional Vector2dF snap_amount = 36; |
| 56 optional Vector2dF source_offset = 37; | 56 optional Vector2dF source_offset = 37; |
| 57 optional Vector2dF source_to_parent = 38; | 57 optional Vector2dF source_to_parent = 38; |
| 58 optional int64 sorting_context_id = 39; | 58 optional int64 sorting_context_id = 39; |
| 59 } | 59 } |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 optional bool full_tree_damaged = 12; | 229 optional bool full_tree_damaged = 12; |
| 230 optional int64 sequence_number = 6; | 230 optional int64 sequence_number = 6; |
| 231 optional bool is_main_thread = 13; | 231 optional bool is_main_thread = 13; |
| 232 optional bool is_active = 14; | 232 optional bool is_active = 14; |
| 233 | 233 |
| 234 optional Vector2dF inner_viewport_container_bounds_delta = 8; | 234 optional Vector2dF inner_viewport_container_bounds_delta = 8; |
| 235 optional Vector2dF outer_viewport_container_bounds_delta = 9; | 235 optional Vector2dF outer_viewport_container_bounds_delta = 9; |
| 236 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; | 236 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; |
| 237 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; | 237 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; |
| 238 } | 238 } |
| OLD | NEW |