| Index: cc/trees/layer_tree_impl.h
 | 
| diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h
 | 
| index 108374c1defb3a957fa6b7c25bedef96ce75d43a..0e103ce0291bf433e8b5dad6533026a3da3b1394 100644
 | 
| --- a/cc/trees/layer_tree_impl.h
 | 
| +++ b/cc/trees/layer_tree_impl.h
 | 
| @@ -231,6 +231,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();
 | 
|    }
 | 
| @@ -485,6 +490,7 @@ class CC_EXPORT LayerTreeImpl {
 | 
|  
 | 
|    float device_scale_factor_;
 | 
|    float painted_device_scale_factor_;
 | 
| +  gfx::ColorSpace device_color_space_;
 | 
|  
 | 
|    scoped_refptr<SyncedElasticOverscroll> elastic_overscroll_;
 | 
|  
 | 
| 
 |