| 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 "layer_position_constraint.proto"; | 7 import "layer_position_constraint.proto"; |
| 8 import "point3f.proto"; | 8 import "point3f.proto"; |
| 9 import "pointf.proto"; | 9 import "pointf.proto"; |
| 10 import "recording_source.proto"; | 10 import "recording_source.proto"; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 | 116 |
| 117 optional int32 scroll_parent_id = 40; | 117 optional int32 scroll_parent_id = 40; |
| 118 repeated int32 scroll_children_ids = 41; | 118 repeated int32 scroll_children_ids = 41; |
| 119 | 119 |
| 120 optional int32 clip_parent_id = 42; | 120 optional int32 clip_parent_id = 42; |
| 121 repeated int32 clip_children_ids = 43; | 121 repeated int32 clip_children_ids = 43; |
| 122 | 122 |
| 123 optional ScrollOffset scroll_offset = 44; | 123 optional ScrollOffset scroll_offset = 44; |
| 124 | 124 |
| 125 optional Rect update_rect = 46; | 125 optional Rect update_rect = 46; |
| 126 optional bool has_will_change_transform_hint = 48; |
| 126 | 127 |
| 127 // TODO(nyquist): Figure out what to do with LayerAnimationController. | 128 // TODO(nyquist): Figure out what to do with LayerAnimationController. |
| 128 // optional LayerAnimationController layer_animation_controller = 48; | 129 // optional LayerAnimationController layer_animation_controller = ???; |
| 129 | |
| 130 // TODO(nyquist): Figure out what to do with FrameTimingRequests. | |
| 131 // repeated FrameTimingRequest frame_timing_requests = 49; | |
| 132 } | 130 } |
| 133 | 131 |
| 134 message PictureLayerProperties { | 132 message PictureLayerProperties { |
| 135 optional RecordingSource recording_source = 1; | 133 optional RecordingSource recording_source = 1; |
| 136 optional Region invalidation = 2; | 134 optional Region invalidation = 2; |
| 137 optional Rect last_updated_visible_layer_rect = 3; | 135 optional Rect last_updated_visible_layer_rect = 3; |
| 138 optional bool is_mask = 4; | 136 optional bool is_mask = 4; |
| 139 optional bool nearest_neighbor = 5; | 137 optional bool nearest_neighbor = 5; |
| 140 | 138 |
| 141 optional int64 update_source_frame_number = 6; | 139 optional int64 update_source_frame_number = 6; |
| 142 } | 140 } |
| 143 | 141 |
| 144 message SolidColorScrollbarLayerProperties { | 142 message SolidColorScrollbarLayerProperties { |
| 145 enum ScrollbarOrientation { | 143 enum ScrollbarOrientation { |
| 146 HORIZONTAL = 0; | 144 HORIZONTAL = 0; |
| 147 VERTICAL = 1; | 145 VERTICAL = 1; |
| 148 }; | 146 }; |
| 149 | 147 |
| 150 optional int32 scroll_layer_id = 1; | 148 optional int32 scroll_layer_id = 1; |
| 151 optional int32 thumb_thickness = 2; | 149 optional int32 thumb_thickness = 2; |
| 152 optional int32 track_start = 3; | 150 optional int32 track_start = 3; |
| 153 optional bool is_left_side_vertical_scrollbar = 4; | 151 optional bool is_left_side_vertical_scrollbar = 4; |
| 154 optional ScrollbarOrientation orientation = 5; | 152 optional ScrollbarOrientation orientation = 5; |
| 155 } | 153 } |
| OLD | NEW |