| 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 "display_item.proto"; |
| 8 import "layer_position_constraint.proto"; | 8 import "layer_position_constraint.proto"; |
| 9 import "point3f.proto"; | 9 import "point3f.proto"; |
| 10 import "pointf.proto"; | 10 import "pointf.proto"; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 optional int64 transform_free_index = 4; | 77 optional int64 transform_free_index = 4; |
| 78 optional int64 effect_tree_index = 5; | 78 optional int64 effect_tree_index = 5; |
| 79 optional int64 clip_tree_index = 6; | 79 optional int64 clip_tree_index = 6; |
| 80 optional int64 scroll_tree_index = 50; | 80 optional int64 scroll_tree_index = 50; |
| 81 optional Vector2dF offset_to_transform_parent = 7; | 81 optional Vector2dF offset_to_transform_parent = 7; |
| 82 optional bool double_sided = 8; | 82 optional bool double_sided = 8; |
| 83 optional bool draws_content = 9; | 83 optional bool draws_content = 9; |
| 84 optional bool may_contain_video = 55; | 84 optional bool may_contain_video = 55; |
| 85 optional bool hide_layer_and_subtree = 10; | 85 optional bool hide_layer_and_subtree = 10; |
| 86 optional bool subtree_property_changed = 47; | 86 optional bool subtree_property_changed = 47; |
| 87 optional bool layer_property_changed = 54; | |
| 88 // TODO(nyquist): Add support for FilterOperation. See crbug.com/541321. | 87 // TODO(nyquist): Add support for FilterOperation. See crbug.com/541321. |
| 89 // repeated FilterOperation filters = 12; | 88 // repeated FilterOperation filters = 12; |
| 90 // repeated FilterOperation background_filters = 13; | 89 // repeated FilterOperation background_filters = 13; |
| 91 optional bool masks_to_bounds = 14; | 90 optional bool masks_to_bounds = 14; |
| 92 optional uint32 main_thread_scrolling_reasons = 15; | 91 optional uint32 main_thread_scrolling_reasons = 15; |
| 93 optional bool have_scroll_event_handlers = 17; | 92 optional bool have_scroll_event_handlers = 17; |
| 94 optional Region non_fast_scrollable_region = 18; | 93 optional Region non_fast_scrollable_region = 18; |
| 95 optional Region touch_event_handler_region = 19; | 94 optional Region touch_event_handler_region = 19; |
| 96 optional bool contents_opaque = 21; | 95 optional bool contents_opaque = 21; |
| 97 optional float opacity = 22; | 96 optional float opacity = 22; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 HORIZONTAL = 0; | 148 HORIZONTAL = 0; |
| 150 VERTICAL = 1; | 149 VERTICAL = 1; |
| 151 }; | 150 }; |
| 152 | 151 |
| 153 optional int32 scroll_layer_id = 1; | 152 optional int32 scroll_layer_id = 1; |
| 154 optional int32 thumb_thickness = 2; | 153 optional int32 thumb_thickness = 2; |
| 155 optional int32 track_start = 3; | 154 optional int32 track_start = 3; |
| 156 optional bool is_left_side_vertical_scrollbar = 4; | 155 optional bool is_left_side_vertical_scrollbar = 4; |
| 157 optional ScrollbarOrientation orientation = 5; | 156 optional ScrollbarOrientation orientation = 5; |
| 158 } | 157 } |
| OLD | NEW |