| 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 package cc.proto; | 7 package cc.proto; |
| 8 | 8 |
| 9 import "layer.proto"; | 9 import "layer.proto"; |
| 10 import "layer_selection_bound.proto"; | 10 import "layer_selection_bound.proto"; |
| 11 import "property_tree.proto"; | 11 import "property_tree.proto"; |
| 12 import "size.proto"; | 12 import "size.proto"; |
| 13 import "vector2df.proto"; |
| 13 | 14 |
| 14 option optimize_for = LITE_RUNTIME; | 15 option optimize_for = LITE_RUNTIME; |
| 15 | 16 |
| 16 message LayerTree { | 17 message LayerTree { |
| 17 repeated int32 layers_that_should_push_properties = 1; | 18 repeated int32 layers_that_should_push_properties = 1; |
| 18 optional bool in_paint_layer_contents = 2; | 19 optional bool in_paint_layer_contents = 2; |
| 19 optional int32 overscroll_elasticity_layer_id = 3; | 20 optional int32 overscroll_elasticity_layer_id = 3; |
| 20 optional int32 page_scale_layer_id = 4; | 21 optional int32 page_scale_layer_id = 4; |
| 21 optional int32 inner_viewport_scroll_layer_id = 5; | 22 optional int32 inner_viewport_scroll_layer_id = 5; |
| 22 optional int32 outer_viewport_scroll_layer_id = 6; | 23 optional int32 outer_viewport_scroll_layer_id = 6; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 34 optional Size device_viewport_size = 18; | 35 optional Size device_viewport_size = 18; |
| 35 optional uint32 background_color = 21; /* SkColor */ | 36 optional uint32 background_color = 21; /* SkColor */ |
| 36 optional bool has_transparent_background = 22; | 37 optional bool has_transparent_background = 22; |
| 37 optional bool have_scroll_event_handlers = 23; | 38 optional bool have_scroll_event_handlers = 23; |
| 38 optional uint32 touch_start_or_move_event_listener_properties = 24; | 39 optional uint32 touch_start_or_move_event_listener_properties = 24; |
| 39 optional uint32 wheel_event_listener_properties = 25; | 40 optional uint32 wheel_event_listener_properties = 25; |
| 40 optional uint32 touch_end_or_cancel_event_listener_properties = 26; | 41 optional uint32 touch_end_or_cancel_event_listener_properties = 26; |
| 41 optional LayerNode root_layer = 27; | 42 optional LayerNode root_layer = 27; |
| 42 optional LayerSelection selection = 29; | 43 optional LayerSelection selection = 29; |
| 43 optional PropertyTrees property_trees = 30; | 44 optional PropertyTrees property_trees = 30; |
| 45 optional Vector2dF elastic_overscroll = 31; |
| 44 } | 46 } |
| OLD | NEW |