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

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

Issue 1991523002: cc : Track ids for which active opacity always wins on property trees (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « cc/layers/solid_color_scrollbar_layer.cc ('k') | cc/trees/layer_tree_host_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 optional float page_scale_factor = 2; 180 optional float page_scale_factor = 2;
181 optional float device_scale_factor = 3; 181 optional float device_scale_factor = 3;
182 optional float device_transform_scale_factor = 4; 182 optional float device_transform_scale_factor = 4;
183 repeated int64 nodes_affected_by_inner_viewport_bounds_delta = 7 183 repeated int64 nodes_affected_by_inner_viewport_bounds_delta = 7
184 [packed = true]; 184 [packed = true];
185 repeated int64 nodes_affected_by_outer_viewport_bounds_delta = 8 185 repeated int64 nodes_affected_by_outer_viewport_bounds_delta = 8
186 [packed = true]; 186 [packed = true];
187 } 187 }
188 188
189 // Proto for class PropertyTrees. 189 // Proto for class PropertyTrees.
190 // NEXT ID: 14 190 // NEXT ID: 16
191 message PropertyTrees { 191 message PropertyTrees {
192 optional PropertyTree transform_tree = 1; 192 optional PropertyTree transform_tree = 1;
193 optional PropertyTree effect_tree = 2; 193 optional PropertyTree effect_tree = 2;
194 optional PropertyTree clip_tree = 3; 194 optional PropertyTree clip_tree = 3;
195 optional PropertyTree scroll_tree = 7; 195 optional PropertyTree scroll_tree = 7;
196 196
197 optional bool needs_rebuild = 4; 197 optional bool needs_rebuild = 4;
198 optional bool non_root_surfaces_enabled = 5; 198 optional bool non_root_surfaces_enabled = 5;
199 optional bool changed = 11; 199 optional bool changed = 11;
200 optional bool full_tree_damaged = 12; 200 optional bool full_tree_damaged = 12;
201 optional int64 sequence_number = 6; 201 optional int64 sequence_number = 6;
202 optional bool is_main_thread = 13; 202 optional bool is_main_thread = 13;
203 optional bool is_active = 14; 203 optional bool is_active = 14;
204 204
205 optional Vector2dF inner_viewport_container_bounds_delta = 8; 205 optional Vector2dF inner_viewport_container_bounds_delta = 8;
206 optional Vector2dF outer_viewport_container_bounds_delta = 9; 206 optional Vector2dF outer_viewport_container_bounds_delta = 9;
207 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; 207 optional Vector2dF inner_viewport_scroll_bounds_delta = 10;
208 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true];
208 } 209 }
OLDNEW
« no previous file with comments | « cc/layers/solid_color_scrollbar_layer.cc ('k') | cc/trees/layer_tree_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698