Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Side by Side Diff: cc/proto/property_tree.proto

Issue 2105673003: cc: Compute animation scale on demand (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "rectf.proto"; 7 import "rectf.proto";
8 import "scroll_offset.proto"; 8 import "scroll_offset.proto";
9 import "size.proto"; 9 import "size.proto";
10 import "synced_property.proto"; 10 import "synced_property.proto";
(...skipping 30 matching lines...) Expand all
41 optional bool node_and_ancestors_have_only_integer_translation = 21; 41 optional bool node_and_ancestors_have_only_integer_translation = 21;
42 optional bool scrolls = 22; 42 optional bool scrolls = 22;
43 optional bool needs_sublayer_scale = 23; 43 optional bool needs_sublayer_scale = 23;
44 optional bool affected_by_inner_viewport_bounds_delta_x = 24; 44 optional bool affected_by_inner_viewport_bounds_delta_x = 24;
45 optional bool affected_by_inner_viewport_bounds_delta_y = 25; 45 optional bool affected_by_inner_viewport_bounds_delta_y = 25;
46 optional bool affected_by_outer_viewport_bounds_delta_x = 26; 46 optional bool affected_by_outer_viewport_bounds_delta_x = 26;
47 optional bool affected_by_outer_viewport_bounds_delta_y = 27; 47 optional bool affected_by_outer_viewport_bounds_delta_y = 27;
48 optional bool in_subtree_of_page_scale_layer = 28; 48 optional bool in_subtree_of_page_scale_layer = 28;
49 optional bool transform_changed = 40; 49 optional bool transform_changed = 40;
50 optional float post_local_scale_factor = 29; 50 optional float post_local_scale_factor = 29;
51 optional float local_maximum_animation_target_scale = 30;
52 optional float local_starting_animation_scale = 31;
53 optional float combined_maximum_animation_target_scale = 32;
54 optional float combined_starting_animation_scale = 33;
55 51
56 optional Vector2dF sublayer_scale = 34; 52 optional Vector2dF sublayer_scale = 34;
57 optional ScrollOffset scroll_offset = 35; 53 optional ScrollOffset scroll_offset = 35;
58 optional Vector2dF scroll_snap = 36; 54 optional Vector2dF scroll_snap = 36;
59 optional Vector2dF source_offset = 37; 55 optional Vector2dF source_offset = 37;
60 optional Vector2dF source_to_parent = 38; 56 optional Vector2dF source_to_parent = 38;
61 optional int64 sorting_context_id = 39; 57 optional int64 sorting_context_id = 39;
62 } 58 }
63 59
64 // Proto for TransformCachedNodeData 60 // Proto for TransformCachedNodeData
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 optional bool full_tree_damaged = 12; 210 optional bool full_tree_damaged = 12;
215 optional int64 sequence_number = 6; 211 optional int64 sequence_number = 6;
216 optional bool is_main_thread = 13; 212 optional bool is_main_thread = 13;
217 optional bool is_active = 14; 213 optional bool is_active = 14;
218 214
219 optional Vector2dF inner_viewport_container_bounds_delta = 8; 215 optional Vector2dF inner_viewport_container_bounds_delta = 8;
220 optional Vector2dF outer_viewport_container_bounds_delta = 9; 216 optional Vector2dF outer_viewport_container_bounds_delta = 9;
221 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; 217 optional Vector2dF inner_viewport_scroll_bounds_delta = 10;
222 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; 218 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true];
223 } 219 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698