| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 optional int64 target_id = 5; | 76 optional int64 target_id = 5; |
| 77 optional bool applies_local_clip = 6; | 77 optional bool applies_local_clip = 6; |
| 78 optional bool layer_clipping_uses_only_local_clip = 7; | 78 optional bool layer_clipping_uses_only_local_clip = 7; |
| 79 optional bool target_is_clipped = 8; | 79 optional bool target_is_clipped = 8; |
| 80 optional bool layers_are_clipped = 9; | 80 optional bool layers_are_clipped = 9; |
| 81 optional bool layers_are_clipped_when_surfaces_disabled = 10; | 81 optional bool layers_are_clipped_when_surfaces_disabled = 10; |
| 82 optional bool resets_clip = 11; | 82 optional bool resets_clip = 11; |
| 83 } | 83 } |
| 84 | 84 |
| 85 // Proto for struct EffectNodeData. | 85 // Proto for struct EffectNodeData. |
| 86 // NEXT ID: 12 | 86 // NEXT ID: 13 |
| 87 message EffectNodeData { | 87 message EffectNodeData { |
| 88 optional float opacity = 1; | 88 optional float opacity = 1; |
| 89 optional float screen_space_opacity = 2; | 89 optional float screen_space_opacity = 2; |
| 90 optional bool has_render_surface = 3; | 90 optional bool has_render_surface = 3; |
| 91 optional bool has_copy_request = 4; | 91 optional bool has_copy_request = 4; |
| 92 optional bool has_background_filters = 5; | 92 optional bool has_background_filters = 5; |
| 93 optional bool is_drawn = 6; | 93 optional bool is_drawn = 6; |
| 94 optional bool has_animated_opacity = 7; | 94 optional bool has_animated_opacity = 7; |
| 95 optional bool effect_changed = 11; | 95 optional bool effect_changed = 11; |
| 96 optional int64 num_copy_requests_in_subtree = 8; | 96 optional int64 num_copy_requests_in_subtree = 8; |
| 97 optional int64 transform_id = 9; | 97 optional int64 transform_id = 9; |
| 98 optional int64 clip_id = 10; | 98 optional int64 clip_id = 10; |
| 99 optional int64 target_id = 12; |
| 99 } | 100 } |
| 100 | 101 |
| 101 // Proto for struct ScrollNodeData | 102 // Proto for struct ScrollNodeData |
| 102 // NEXT ID: 15 | 103 // NEXT ID: 15 |
| 103 message ScrollNodeData { | 104 message ScrollNodeData { |
| 104 optional bool scrollable = 1; | 105 optional bool scrollable = 1; |
| 105 optional int32 main_thread_scrolling_reasons = 2; | 106 optional int32 main_thread_scrolling_reasons = 2; |
| 106 optional bool contains_non_fast_scrollable_region = 3; | 107 optional bool contains_non_fast_scrollable_region = 3; |
| 107 optional Size scroll_clip_layer_bounds = 4; | 108 optional Size scroll_clip_layer_bounds = 4; |
| 108 optional Size bounds = 5; | 109 optional Size bounds = 5; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 optional bool changed = 11; | 194 optional bool changed = 11; |
| 194 optional bool full_tree_damaged = 12; | 195 optional bool full_tree_damaged = 12; |
| 195 optional int64 sequence_number = 6; | 196 optional int64 sequence_number = 6; |
| 196 optional bool is_main_thread = 13; | 197 optional bool is_main_thread = 13; |
| 197 optional bool is_active = 14; | 198 optional bool is_active = 14; |
| 198 | 199 |
| 199 optional Vector2dF inner_viewport_container_bounds_delta = 8; | 200 optional Vector2dF inner_viewport_container_bounds_delta = 8; |
| 200 optional Vector2dF outer_viewport_container_bounds_delta = 9; | 201 optional Vector2dF outer_viewport_container_bounds_delta = 9; |
| 201 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; | 202 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; |
| 202 } | 203 } |
| OLD | NEW |