| 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"; | |
| 10 import "layer_tree_debug_state.proto"; | 9 import "layer_tree_debug_state.proto"; |
| 11 import "property_tree.proto"; | 10 import "property_tree.proto"; |
| 12 import "size.proto"; | 11 import "size.proto"; |
| 13 import "vector2df.proto"; | 12 import "vector2df.proto"; |
| 14 | 13 |
| 15 package cc.proto; | 14 package cc.proto; |
| 16 | 15 |
| 17 option optimize_for = LITE_RUNTIME; | 16 option optimize_for = LITE_RUNTIME; |
| 18 | 17 |
| 19 message LayerTreeHost { | 18 message LayerTreeHost { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 optional LayerSelection selection = 30; | 51 optional LayerSelection selection = 30; |
| 53 optional PropertyTrees property_trees = 31; | 52 optional PropertyTrees property_trees = 31; |
| 54 optional uint32 surface_id_namespace = 32; | 53 optional uint32 surface_id_namespace = 32; |
| 55 optional uint32 next_surface_sequence = 33; | 54 optional uint32 next_surface_sequence = 33; |
| 56 optional uint32 wheel_event_listener_properties = 34; | 55 optional uint32 wheel_event_listener_properties = 34; |
| 57 optional bool have_scroll_event_handlers = 35; | 56 optional bool have_scroll_event_handlers = 35; |
| 58 optional uint32 touch_start_or_move_event_listener_properties = 36; | 57 optional uint32 touch_start_or_move_event_listener_properties = 36; |
| 59 repeated int32 layers_that_should_push_properties = 37; | 58 repeated int32 layers_that_should_push_properties = 37; |
| 60 optional uint32 touch_end_or_cancel_event_listener_properties = 38; | 59 optional uint32 touch_end_or_cancel_event_listener_properties = 38; |
| 61 } | 60 } |
| OLD | NEW |