| 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 "display_item.proto"; |
| 7 import "layer_position_constraint.proto"; | 8 import "layer_position_constraint.proto"; |
| 8 import "point3f.proto"; | 9 import "point3f.proto"; |
| 9 import "pointf.proto"; | 10 import "pointf.proto"; |
| 10 import "recording_source.proto"; | 11 import "recording_source.proto"; |
| 11 import "region.proto"; | 12 import "region.proto"; |
| 12 import "rect.proto"; | 13 import "rect.proto"; |
| 13 import "scroll_offset.proto"; | 14 import "scroll_offset.proto"; |
| 14 import "size.proto"; | 15 import "size.proto"; |
| 15 import "skxfermode.proto"; | 16 import "skxfermode.proto"; |
| 16 import "transform.proto"; | 17 import "transform.proto"; |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 } | 132 } |
| 132 | 133 |
| 133 message PictureLayerProperties { | 134 message PictureLayerProperties { |
| 134 optional RecordingSource recording_source = 1; | 135 optional RecordingSource recording_source = 1; |
| 135 optional Region invalidation = 2; | 136 optional Region invalidation = 2; |
| 136 optional Rect last_updated_visible_layer_rect = 3; | 137 optional Rect last_updated_visible_layer_rect = 3; |
| 137 optional bool is_mask = 4; | 138 optional bool is_mask = 4; |
| 138 optional bool nearest_neighbor = 5; | 139 optional bool nearest_neighbor = 5; |
| 139 | 140 |
| 140 optional int64 update_source_frame_number = 6; | 141 optional int64 update_source_frame_number = 6; |
| 142 |
| 143 optional Rect recorded_viewport = 7; |
| 144 optional DisplayItemList display_list = 8; |
| 141 } | 145 } |
| 142 | 146 |
| 143 message SolidColorScrollbarLayerProperties { | 147 message SolidColorScrollbarLayerProperties { |
| 144 enum ScrollbarOrientation { | 148 enum ScrollbarOrientation { |
| 145 HORIZONTAL = 0; | 149 HORIZONTAL = 0; |
| 146 VERTICAL = 1; | 150 VERTICAL = 1; |
| 147 }; | 151 }; |
| 148 | 152 |
| 149 optional int32 scroll_layer_id = 1; | 153 optional int32 scroll_layer_id = 1; |
| 150 optional int32 thumb_thickness = 2; | 154 optional int32 thumb_thickness = 2; |
| 151 optional int32 track_start = 3; | 155 optional int32 track_start = 3; |
| 152 optional bool is_left_side_vertical_scrollbar = 4; | 156 optional bool is_left_side_vertical_scrollbar = 4; |
| 153 optional ScrollbarOrientation orientation = 5; | 157 optional ScrollbarOrientation orientation = 5; |
| 154 } | 158 } |
| OLD | NEW |