| Index: cc/test/pixel_test_output_surface.cc
|
| diff --git a/cc/test/pixel_test_output_surface.cc b/cc/test/pixel_test_output_surface.cc
|
| index 909eda708196ffa8a8d29df6aab8876fbe3850f3..463471d9014384e2db0f5fc672a43a6b67cc8520 100644
|
| --- a/cc/test/pixel_test_output_surface.cc
|
| +++ b/cc/test/pixel_test_output_surface.cc
|
| @@ -41,10 +41,11 @@ PixelTestOutputSurface::~PixelTestOutputSurface() {}
|
|
|
| void PixelTestOutputSurface::Reshape(const gfx::Size& size,
|
| float scale_factor,
|
| + const gfx::ColorProfile& color_profile,
|
| bool has_alpha) {
|
| gfx::Size expanded_size(size.width() + surface_expansion_size_.width(),
|
| size.height() + surface_expansion_size_.height());
|
| - OutputSurface::Reshape(expanded_size, scale_factor, has_alpha);
|
| + OutputSurface::Reshape(expanded_size, scale_factor, color_profile, has_alpha);
|
| }
|
|
|
| bool PixelTestOutputSurface::HasExternalStencilTest() const {
|
|
|