| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 optional Vector2dF offset_to_transform_parent = 7; | 79 optional Vector2dF offset_to_transform_parent = 7; |
| 80 optional bool double_sided = 8; | 80 optional bool double_sided = 8; |
| 81 optional bool draws_content = 9; | 81 optional bool draws_content = 9; |
| 82 optional bool hide_layer_and_subtree = 10; | 82 optional bool hide_layer_and_subtree = 10; |
| 83 optional bool has_render_surface = 11; | 83 optional bool has_render_surface = 11; |
| 84 // TODO(nyquist): Add support for FilterOperation. See crbug.com/541321. | 84 // TODO(nyquist): Add support for FilterOperation. See crbug.com/541321. |
| 85 // repeated FilterOperation filters = 12; | 85 // repeated FilterOperation filters = 12; |
| 86 // repeated FilterOperation background_filters = 13; | 86 // repeated FilterOperation background_filters = 13; |
| 87 optional bool masks_to_bounds = 14; | 87 optional bool masks_to_bounds = 14; |
| 88 optional uint32 main_thread_scrolling_reasons = 15; | 88 optional uint32 main_thread_scrolling_reasons = 15; |
| 89 optional bool have_wheel_event_handlers = 16; | |
| 90 optional bool have_scroll_event_handlers = 17; | 89 optional bool have_scroll_event_handlers = 17; |
| 91 optional Region non_fast_scrollable_region = 18; | 90 optional Region non_fast_scrollable_region = 18; |
| 92 optional Region touch_event_handler_region = 19; | 91 optional Region touch_event_handler_region = 19; |
| 93 optional int32 scroll_blocks_on = 20; | 92 optional int32 scroll_blocks_on = 20; |
| 94 optional bool contents_opaque = 21; | 93 optional bool contents_opaque = 21; |
| 95 optional float opacity = 22; | 94 optional float opacity = 22; |
| 96 optional SkXfermode.Mode blend_mode = 23; | 95 optional SkXfermode.Mode blend_mode = 23; |
| 97 optional bool is_root_for_isolated_group = 24; | 96 optional bool is_root_for_isolated_group = 24; |
| 98 optional PointF position = 25; | 97 optional PointF position = 25; |
| 99 optional bool is_container_for_fixed_position_layers = 26; | 98 optional bool is_container_for_fixed_position_layers = 26; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 | 132 |
| 134 message PictureLayerProperties { | 133 message PictureLayerProperties { |
| 135 optional DisplayListRecordingSource recording_source = 1; | 134 optional DisplayListRecordingSource recording_source = 1; |
| 136 optional Region invalidation = 2; | 135 optional Region invalidation = 2; |
| 137 optional Rect last_updated_visible_layer_rect = 3; | 136 optional Rect last_updated_visible_layer_rect = 3; |
| 138 optional bool is_mask = 4; | 137 optional bool is_mask = 4; |
| 139 optional bool nearest_neighbor = 5; | 138 optional bool nearest_neighbor = 5; |
| 140 | 139 |
| 141 optional int64 update_source_frame_number = 6; | 140 optional int64 update_source_frame_number = 6; |
| 142 } | 141 } |
| OLD | NEW |