| Index: cc/trees/layer_tree_host.h
|
| diff --git a/cc/trees/layer_tree_host.h b/cc/trees/layer_tree_host.h
|
| index 9a5deabf7aa8d745cfef71e8108d5d0cddbeb321..57f8faa7e3dfbb5bd697579032fd07385a8a0e6e 100644
|
| --- a/cc/trees/layer_tree_host.h
|
| +++ b/cc/trees/layer_tree_host.h
|
| @@ -312,9 +312,9 @@ class CC_EXPORT LayerTreeHost : public NON_EXPORTED_BASE(SurfaceReferenceOwner),
|
| void SetContentSourceId(uint32_t);
|
| uint32_t content_source_id() const { return content_source_id_; }
|
|
|
| - void SetDeviceColorSpace(const gfx::ColorSpace& device_color_space);
|
| - const gfx::ColorSpace& device_color_space() const {
|
| - return device_color_space_;
|
| + void SetRasterColorSpace(const gfx::ColorSpace& raster_color_space);
|
| + const gfx::ColorSpace& raster_color_space() const {
|
| + return raster_color_space_;
|
| }
|
|
|
| // Used externally by blink for setting the PropertyTrees when
|
| @@ -571,7 +571,7 @@ class CC_EXPORT LayerTreeHost : public NON_EXPORTED_BASE(SurfaceReferenceOwner),
|
| float page_scale_factor_ = 1.f;
|
| float min_page_scale_factor_ = 1.f;
|
| float max_page_scale_factor_ = 1.f;
|
| - gfx::ColorSpace device_color_space_;
|
| + gfx::ColorSpace raster_color_space_;
|
|
|
| uint32_t content_source_id_;
|
|
|
|
|