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

Unified Diff: cc/trees/layer_tree.h

Issue 2609243003: [NOT FOR REVIEW]
Patch Set: Created 3 years, 12 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/trees/draw_property_utils.cc ('k') | cc/trees/layer_tree.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree.h
diff --git a/cc/trees/layer_tree.h b/cc/trees/layer_tree.h
index e58e71cb1f48f15d784d9d290a5c8c88ecefdee4..c6ba5f3020095dc1b1c3b5ab735311fdc30efa5c 100644
--- a/cc/trees/layer_tree.h
+++ b/cc/trees/layer_tree.h
@@ -134,6 +134,12 @@ class CC_EXPORT LayerTree : public MutatorHostClient {
// |settings_.use_layer_lists| is true. This is a SPV2 setting.
PropertyTrees* property_trees() { return &property_trees_; }
+ PropertyTrees* test_property_trees_with_new_clip_tree() {
+ if (!test_property_trees_with_new_clip_tree_)
+ test_property_trees_with_new_clip_tree_ = new PropertyTrees();
+ return test_property_trees_with_new_clip_tree_;
+ }
+
void SetNeedsDisplayOnAllLayers();
void SetNeedsCommit();
@@ -282,6 +288,8 @@ class CC_EXPORT LayerTree : public MutatorHostClient {
PropertyTrees property_trees_;
+ PropertyTrees* test_property_trees_with_new_clip_tree_;
+
bool needs_full_tree_sync_;
bool needs_meta_info_recomputation_;
« no previous file with comments | « cc/trees/draw_property_utils.cc ('k') | cc/trees/layer_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698