| Index: cc/surfaces/display.h
|
| diff --git a/cc/surfaces/display.h b/cc/surfaces/display.h
|
| index 35b504149b23362a8e2de6c3bcb64a600469c04f..fc8db83f34ef2da9435727b4497a5a32fabece8f 100644
|
| --- a/cc/surfaces/display.h
|
| +++ b/cc/surfaces/display.h
|
| @@ -70,7 +70,8 @@ class CC_SURFACES_EXPORT Display : public DisplaySchedulerClient,
|
| void SetLocalSurfaceId(const LocalSurfaceId& id, float device_scale_factor);
|
| void SetVisible(bool visible);
|
| void Resize(const gfx::Size& new_size);
|
| - void SetColorSpace(const gfx::ColorSpace& color_space);
|
| + void SetColorSpace(const gfx::ColorSpace& blending_color_space,
|
| + const gfx::ColorSpace& device_color_space);
|
| void SetOutputIsSecure(bool secure);
|
|
|
| const SurfaceId& CurrentSurfaceId();
|
| @@ -108,6 +109,7 @@ class CC_SURFACES_EXPORT Display : public DisplaySchedulerClient,
|
| SurfaceId current_surface_id_;
|
| gfx::Size current_surface_size_;
|
| float device_scale_factor_ = 1.f;
|
| + gfx::ColorSpace blending_color_space_;
|
| gfx::ColorSpace device_color_space_;
|
| bool visible_ = false;
|
| bool swapped_since_resize_ = false;
|
|
|