| 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.proto"; |
| 10 import "layer_tree_debug_state.proto"; | 11 import "layer_tree_debug_state.proto"; |
| 11 import "property_tree.proto"; | 12 import "property_tree.proto"; |
| 12 import "size.proto"; | 13 import "size.proto"; |
| 13 import "vector2df.proto"; | 14 import "vector2df.proto"; |
| 14 | 15 |
| 15 package cc.proto; | 16 package cc.proto; |
| 16 | 17 |
| 17 option optimize_for = LITE_RUNTIME; | 18 option optimize_for = LITE_RUNTIME; |
| 18 | 19 |
| 19 message SkPictureData { | 20 message SkPictureData { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 optional int32 page_scale_layer_id = 27; | 59 optional int32 page_scale_layer_id = 27; |
| 59 optional int32 inner_viewport_scroll_layer_id = 28; | 60 optional int32 inner_viewport_scroll_layer_id = 28; |
| 60 optional int32 outer_viewport_scroll_layer_id = 29; | 61 optional int32 outer_viewport_scroll_layer_id = 29; |
| 61 optional LayerSelection selection = 30; | 62 optional LayerSelection selection = 30; |
| 62 optional PropertyTrees property_trees = 31; | 63 optional PropertyTrees property_trees = 31; |
| 63 optional uint32 surface_client_id = 32; | 64 optional uint32 surface_client_id = 32; |
| 64 optional uint32 next_surface_sequence = 33; | 65 optional uint32 next_surface_sequence = 33; |
| 65 optional uint32 wheel_event_listener_properties = 34; | 66 optional uint32 wheel_event_listener_properties = 34; |
| 66 optional bool have_scroll_event_handlers = 35; | 67 optional bool have_scroll_event_handlers = 35; |
| 67 optional uint32 touch_start_or_move_event_listener_properties = 36; | 68 optional uint32 touch_start_or_move_event_listener_properties = 36; |
| 68 repeated int32 layers_that_should_push_properties = 37; | 69 optional LayerTree layer_tree = 37; |
| 69 optional uint32 touch_end_or_cancel_event_listener_properties = 38; | 70 optional uint32 touch_end_or_cancel_event_listener_properties = 38; |
| 70 optional SkPictures pictures = 39; | 71 optional SkPictures pictures = 39; |
| 71 } | 72 } |
| OLD | NEW |