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

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

Issue 1626513003: Add ScrollTree builder and unit test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change the protobuf indices Created 4 years, 11 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 "transform.proto"; 9 import "transform.proto";
10 import "vector2df.proto"; 10 import "vector2df.proto";
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 [packed = true]; 145 [packed = true];
146 repeated int64 nodes_affected_by_outer_viewport_bounds_delta = 8 146 repeated int64 nodes_affected_by_outer_viewport_bounds_delta = 8
147 [packed = true]; 147 [packed = true];
148 } 148 }
149 149
150 // Proto for class PropertyTrees. 150 // Proto for class PropertyTrees.
151 message PropertyTrees { 151 message PropertyTrees {
152 optional PropertyTree transform_tree = 1; 152 optional PropertyTree transform_tree = 1;
153 optional PropertyTree effect_tree = 2; 153 optional PropertyTree effect_tree = 2;
154 optional PropertyTree clip_tree = 3; 154 optional PropertyTree clip_tree = 3;
155 optional PropertyTree scroll_tree = 4; 155 optional PropertyTree scroll_tree = 7;
David Trainor- moved to gerrit 2016/01/26 16:34:56 Does this one need to be changed? Maybe I'm misre
sunxd 2016/01/26 16:39:43 Sorry this one is changed in the previous CL by me
156 156
157 optional bool needs_rebuild = 5; 157 optional bool needs_rebuild = 4;
158 optional bool non_root_surfaces_enabled = 6; 158 optional bool non_root_surfaces_enabled = 5;
159 optional int64 sequence_number = 7; 159 optional int64 sequence_number = 6;
160 } 160 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698