| Index: content/browser/compositor/reflector_impl_unittest.cc
|
| diff --git a/content/browser/compositor/reflector_impl_unittest.cc b/content/browser/compositor/reflector_impl_unittest.cc
|
| index d594856503a05928fe30ec78cac9282268b074c3..66e89b35ff8c9b441a27c272c4c2d1bdd07c2e82 100644
|
| --- a/content/browser/compositor/reflector_impl_unittest.cc
|
| +++ b/content/browser/compositor/reflector_impl_unittest.cc
|
| @@ -90,7 +90,8 @@ class TestOutputSurface : public BrowserCompositorOutputSurface {
|
| void Reshape(const gfx::Size& size,
|
| float device_scale_factor,
|
| const gfx::ColorSpace& color_space,
|
| - bool has_alpha) override {}
|
| + bool has_alpha,
|
| + bool use_stencil) override {}
|
| void SwapBuffers(cc::OutputSurfaceFrame frame) override {}
|
| uint32_t GetFramebufferCopyTextureFormat() override { return GL_RGB; }
|
| bool IsDisplayedAsOverlayPlane() const override { return false; }
|
| @@ -151,7 +152,8 @@ class ReflectorImplTest : public testing::Test {
|
| compositor_->SetRootLayer(root_layer_.get());
|
| mirroring_layer_.reset(new ui::Layer(ui::LAYER_SOLID_COLOR));
|
| compositor_->root_layer()->Add(mirroring_layer_.get());
|
| - output_surface_->Reshape(kSurfaceSize, 1.f, gfx::ColorSpace(), false);
|
| + output_surface_->Reshape(kSurfaceSize, 1.f, gfx::ColorSpace(), false,
|
| + false);
|
| mirroring_layer_->SetBounds(gfx::Rect(kSurfaceSize));
|
| }
|
|
|
|
|