Index: cc/trees/layer_tree_impl.h |
diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h |
index 1f2cdbb37865b4eebc668092b0220082893fd79c..955d7603132bb697705190b0ac67a0ae8952699e 100644 |
--- a/cc/trees/layer_tree_impl.h |
+++ b/cc/trees/layer_tree_impl.h |
@@ -233,6 +233,11 @@ class CC_EXPORT LayerTreeImpl { |
return painted_device_scale_factor_; |
} |
+ void SetDeviceColorSpace(const gfx::ColorSpace& device_color_space); |
+ const gfx::ColorSpace& device_color_space() const { |
+ return device_color_space_; |
+ } |
+ |
SyncedElasticOverscroll* elastic_overscroll() { |
return elastic_overscroll_.get(); |
} |
@@ -487,6 +492,7 @@ class CC_EXPORT LayerTreeImpl { |
float device_scale_factor_; |
float painted_device_scale_factor_; |
+ gfx::ColorSpace device_color_space_; |
scoped_refptr<SyncedElasticOverscroll> elastic_overscroll_; |