| 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_list_recording_source.proto"; | 7 import "display_list_recording_source.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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 optional bool has_render_surface = 11; | 85 optional bool has_render_surface = 11; |
| 86 // TODO(nyquist): Add support for FilterOperation. See crbug.com/541321. | 86 // TODO(nyquist): Add support for FilterOperation. See crbug.com/541321. |
| 87 // repeated FilterOperation filters = 12; | 87 // repeated FilterOperation filters = 12; |
| 88 // repeated FilterOperation background_filters = 13; | 88 // repeated FilterOperation background_filters = 13; |
| 89 optional bool masks_to_bounds = 14; | 89 optional bool masks_to_bounds = 14; |
| 90 optional uint32 main_thread_scrolling_reasons = 15; | 90 optional uint32 main_thread_scrolling_reasons = 15; |
| 91 optional bool have_wheel_event_handlers = 16; | 91 optional bool have_wheel_event_handlers = 16; |
| 92 optional bool have_scroll_event_handlers = 17; | 92 optional bool have_scroll_event_handlers = 17; |
| 93 optional Region non_fast_scrollable_region = 18; | 93 optional Region non_fast_scrollable_region = 18; |
| 94 optional Region touch_event_handler_region = 19; | 94 optional Region touch_event_handler_region = 19; |
| 95 optional int32 scroll_blocks_on = 20; | |
| 96 optional bool contents_opaque = 21; | 95 optional bool contents_opaque = 21; |
| 97 optional float opacity = 22; | 96 optional float opacity = 22; |
| 98 optional SkXfermode.Mode blend_mode = 23; | 97 optional SkXfermode.Mode blend_mode = 23; |
| 99 optional bool is_root_for_isolated_group = 24; | 98 optional bool is_root_for_isolated_group = 24; |
| 100 optional PointF position = 25; | 99 optional PointF position = 25; |
| 101 optional bool is_container_for_fixed_position_layers = 26; | 100 optional bool is_container_for_fixed_position_layers = 26; |
| 102 optional LayerPositionConstraint position_constraint = 27; | 101 optional LayerPositionConstraint position_constraint = 27; |
| 103 optional bool should_flatten_transform = 28; | 102 optional bool should_flatten_transform = 28; |
| 104 optional bool should_flatten_transform_from_property_tree = 29; | 103 optional bool should_flatten_transform_from_property_tree = 29; |
| 105 optional int32 num_layer_or_descendants_with_copy_request = 30; | 104 optional int32 num_layer_or_descendants_with_copy_request = 30; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 135 | 134 |
| 136 message PictureLayerProperties { | 135 message PictureLayerProperties { |
| 137 optional DisplayListRecordingSource recording_source = 1; | 136 optional DisplayListRecordingSource recording_source = 1; |
| 138 optional Region invalidation = 2; | 137 optional Region invalidation = 2; |
| 139 optional Rect last_updated_visible_layer_rect = 3; | 138 optional Rect last_updated_visible_layer_rect = 3; |
| 140 optional bool is_mask = 4; | 139 optional bool is_mask = 4; |
| 141 optional bool nearest_neighbor = 5; | 140 optional bool nearest_neighbor = 5; |
| 142 | 141 |
| 143 optional int64 update_source_frame_number = 6; | 142 optional int64 update_source_frame_number = 6; |
| 144 } | 143 } |
| OLD | NEW |