| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 message TransformCachedNodeData { | 61 message TransformCachedNodeData { |
| 62 optional Transform from_target = 1; | 62 optional Transform from_target = 1; |
| 63 optional Transform to_target = 2; | 63 optional Transform to_target = 2; |
| 64 optional Transform from_screen = 3; | 64 optional Transform from_screen = 3; |
| 65 optional Transform to_screen = 4; | 65 optional Transform to_screen = 4; |
| 66 optional int64 target_id = 5; | 66 optional int64 target_id = 5; |
| 67 optional int64 content_target_id = 6; | 67 optional int64 content_target_id = 6; |
| 68 } | 68 } |
| 69 | 69 |
| 70 // Proto for struct ClipNodeData. | 70 // Proto for struct ClipNodeData. |
| 71 // NEXT ID: 12 | 71 // NEXT ID: 13 |
| 72 message ClipNodeData { | 72 message ClipNodeData { |
| 73 optional RectF clip = 1; | 73 optional RectF clip = 1; |
| 74 optional RectF combined_clip_in_target_space = 2; | 74 optional RectF combined_clip_in_target_space = 2; |
| 75 optional RectF clip_in_target_space = 3; | 75 optional RectF clip_in_target_space = 3; |
| 76 | 76 |
| 77 optional int64 transform_id = 4; | 77 optional int64 transform_id = 4; |
| 78 optional int64 target_id = 5; | 78 optional int64 target_transform_id = 5; |
| 79 optional int64 target_effect_id = 12; |
| 79 optional bool applies_local_clip = 6; | 80 optional bool applies_local_clip = 6; |
| 80 optional bool layer_clipping_uses_only_local_clip = 7; | 81 optional bool layer_clipping_uses_only_local_clip = 7; |
| 81 optional bool target_is_clipped = 8; | 82 optional bool target_is_clipped = 8; |
| 82 optional bool layers_are_clipped = 9; | 83 optional bool layers_are_clipped = 9; |
| 83 optional bool layers_are_clipped_when_surfaces_disabled = 10; | 84 optional bool layers_are_clipped_when_surfaces_disabled = 10; |
| 84 optional bool resets_clip = 11; | 85 optional bool resets_clip = 11; |
| 85 } | 86 } |
| 86 | 87 |
| 87 // Proto for struct EffectNodeData. | 88 // Proto for struct EffectNodeData. |
| 88 // NEXT ID: 21 | 89 // NEXT ID: 21 |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 optional bool full_tree_damaged = 12; | 212 optional bool full_tree_damaged = 12; |
| 212 optional int64 sequence_number = 6; | 213 optional int64 sequence_number = 6; |
| 213 optional bool is_main_thread = 13; | 214 optional bool is_main_thread = 13; |
| 214 optional bool is_active = 14; | 215 optional bool is_active = 14; |
| 215 | 216 |
| 216 optional Vector2dF inner_viewport_container_bounds_delta = 8; | 217 optional Vector2dF inner_viewport_container_bounds_delta = 8; |
| 217 optional Vector2dF outer_viewport_container_bounds_delta = 9; | 218 optional Vector2dF outer_viewport_container_bounds_delta = 9; |
| 218 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; | 219 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; |
| 219 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; | 220 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; |
| 220 } | 221 } |
| OLD | NEW |