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 "layer.proto"; | 7 import "layer.proto"; |
8 import "layer_selection_bound.proto"; | 8 import "layer_selection_bound.proto"; |
9 import "layer_tree_settings.proto"; | 9 import "layer_tree_settings.proto"; |
10 import "layer_tree_debug_state.proto"; | 10 import "layer_tree_debug_state.proto"; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 optional int32 id = 24; | 46 optional int32 id = 24; |
47 optional bool next_commit_forces_redraw = 25; | 47 optional bool next_commit_forces_redraw = 25; |
48 optional int32 overscroll_elasticity_layer_id = 26; | 48 optional int32 overscroll_elasticity_layer_id = 26; |
49 optional int32 page_scale_layer_id = 27; | 49 optional int32 page_scale_layer_id = 27; |
50 optional int32 inner_viewport_scroll_layer_id = 28; | 50 optional int32 inner_viewport_scroll_layer_id = 28; |
51 optional int32 outer_viewport_scroll_layer_id = 29; | 51 optional int32 outer_viewport_scroll_layer_id = 29; |
52 optional LayerSelection selection = 30; | 52 optional LayerSelection selection = 30; |
53 optional PropertyTrees property_trees = 31; | 53 optional PropertyTrees property_trees = 31; |
54 optional uint32 surface_id_namespace = 32; | 54 optional uint32 surface_id_namespace = 32; |
55 optional uint32 next_surface_sequence = 33; | 55 optional uint32 next_surface_sequence = 33; |
56 optional bool have_wheel_event_handlers = 34; | 56 optional uint32 wheel_event_listener_properties = 34; |
57 optional bool have_scroll_event_handlers = 35; | 57 optional bool have_scroll_event_handlers = 35; |
| 58 optional uint32 touch_event_listener_properties = 36; |
58 } | 59 } |
OLD | NEW |