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

Unified Diff: cc/trees/layer_tree_host_common.h

Issue 816543004: Update from https://crrev.com/308996 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/trees/layer_tree_host.cc ('k') | cc/trees/layer_tree_host_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_host_common.h
diff --git a/cc/trees/layer_tree_host_common.h b/cc/trees/layer_tree_host_common.h
index 81aca55c03b075b41a0ebed6719596986e5883a4..678ed757907d3e30184f97f608d182b3c7e10f7f 100644
--- a/cc/trees/layer_tree_host_common.h
+++ b/cc/trees/layer_tree_host_common.h
@@ -45,6 +45,7 @@ class CC_EXPORT LayerTreeHostCommon {
bool layers_always_allowed_lcd_text,
bool can_render_to_separate_surface,
bool can_adjust_raster_scales,
+ bool verify_property_trees,
RenderSurfaceLayerListType* render_surface_layer_list,
int current_render_surface_layer_list_id)
: root_layer(root_layer),
@@ -61,6 +62,7 @@ class CC_EXPORT LayerTreeHostCommon {
layers_always_allowed_lcd_text(layers_always_allowed_lcd_text),
can_render_to_separate_surface(can_render_to_separate_surface),
can_adjust_raster_scales(can_adjust_raster_scales),
+ verify_property_trees(verify_property_trees),
render_surface_layer_list(render_surface_layer_list),
current_render_surface_layer_list_id(
current_render_surface_layer_list_id) {}
@@ -78,6 +80,7 @@ class CC_EXPORT LayerTreeHostCommon {
bool layers_always_allowed_lcd_text;
bool can_render_to_separate_surface;
bool can_adjust_raster_scales;
+ bool verify_property_trees;
RenderSurfaceLayerListType* render_surface_layer_list;
int current_render_surface_layer_list_id;
};
@@ -238,6 +241,7 @@ LayerTreeHostCommon::CalcDrawPropsInputsForTesting<LayerType,
false,
true,
false,
+ true,
render_surface_layer_list,
0) {
DCHECK(root_layer);
@@ -265,6 +269,7 @@ LayerTreeHostCommon::CalcDrawPropsInputsForTesting<LayerType,
false,
true,
false,
+ true,
render_surface_layer_list,
0) {
DCHECK(root_layer);
« no previous file with comments | « cc/trees/layer_tree_host.cc ('k') | cc/trees/layer_tree_host_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698