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.proto"; | 8 import "layer.proto"; |
9 import "layer_selection_bound.proto"; | 9 import "layer_selection_bound.proto"; |
10 import "layer_tree_debug_state.proto"; | 10 import "layer_tree_debug_state.proto"; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
53 optional bool has_transparent_background = 22; | 53 optional bool has_transparent_background = 22; |
54 optional bool in_paint_layer_contents = 23; | 54 optional bool in_paint_layer_contents = 23; |
55 optional int32 id = 24; | 55 optional int32 id = 24; |
56 optional bool next_commit_forces_redraw = 25; | 56 optional bool next_commit_forces_redraw = 25; |
57 optional int32 overscroll_elasticity_layer_id = 26; | 57 optional int32 overscroll_elasticity_layer_id = 26; |
58 optional int32 page_scale_layer_id = 27; | 58 optional int32 page_scale_layer_id = 27; |
59 optional int32 inner_viewport_scroll_layer_id = 28; | 59 optional int32 inner_viewport_scroll_layer_id = 28; |
60 optional int32 outer_viewport_scroll_layer_id = 29; | 60 optional int32 outer_viewport_scroll_layer_id = 29; |
61 optional LayerSelection selection = 30; | 61 optional LayerSelection selection = 30; |
62 optional PropertyTrees property_trees = 31; | 62 optional PropertyTrees property_trees = 31; |
63 optional uint32 surface_id_namespace = 32; | 63 optional uint32 surface_client_id = 32; |
michaelpg
2016/07/15 18:32:56
Annoyingly, I had to blow away my entire out direc
| |
64 optional uint32 next_surface_sequence = 33; | 64 optional uint32 next_surface_sequence = 33; |
65 optional uint32 wheel_event_listener_properties = 34; | 65 optional uint32 wheel_event_listener_properties = 34; |
66 optional bool have_scroll_event_handlers = 35; | 66 optional bool have_scroll_event_handlers = 35; |
67 optional uint32 touch_start_or_move_event_listener_properties = 36; | 67 optional uint32 touch_start_or_move_event_listener_properties = 36; |
68 repeated int32 layers_that_should_push_properties = 37; | 68 repeated int32 layers_that_should_push_properties = 37; |
69 optional uint32 touch_end_or_cancel_event_listener_properties = 38; | 69 optional uint32 touch_end_or_cancel_event_listener_properties = 38; |
70 optional SkPictures pictures = 39; | 70 optional SkPictures pictures = 39; |
71 } | 71 } |
OLD | NEW |