| Index: content/browser/renderer_host/compositor_impl_android.cc
|
| diff --git a/content/browser/renderer_host/compositor_impl_android.cc b/content/browser/renderer_host/compositor_impl_android.cc
|
| index 544849c7a630f63c1efff8dd45ddb03f056b99df..718dd4e8f3645317926b702595cb1abd81aaa9ce 100644
|
| --- a/content/browser/renderer_host/compositor_impl_android.cc
|
| +++ b/content/browser/renderer_host/compositor_impl_android.cc
|
| @@ -263,6 +263,14 @@ class AndroidOutputSurface : public cc::OutputSurface {
|
| context_provider()->ContextGL()->BindFramebuffer(GL_FRAMEBUFFER, 0);
|
| }
|
|
|
| + void Reshape(const gfx::Size& size,
|
| + float device_scale_factor,
|
| + const gfx::ColorSpace& color_space,
|
| + bool has_alpha) override {
|
| + context_provider()->ContextGL()->ResizeCHROMIUM(
|
| + size.width(), size.height(), device_scale_factor, has_alpha);
|
| + }
|
| +
|
| cc::OverlayCandidateValidator* GetOverlayCandidateValidator() const override {
|
| return overlay_candidate_validator_.get();
|
| }
|
|
|