| Index: content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc
|
| diff --git a/content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc b/content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc
|
| index 29306b4b8f5992e90d885693020f6ccab07cd471..e52843a67363f6df7f6561d03b275ea2fa1de32c 100644
|
| --- a/content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc
|
| +++ b/content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc
|
| @@ -80,9 +80,11 @@ void OffscreenCanvasCompositorFrameSink::ReclaimResources(
|
| client_->ReclaimResources(resources);
|
| }
|
|
|
| -void OffscreenCanvasCompositorFrameSink::WillDrawSurface() {
|
| +void OffscreenCanvasCompositorFrameSink::WillDrawSurface(
|
| + const cc::LocalSurfaceId& local_surface_id,
|
| + const gfx::Rect& damage_rect) {
|
| if (client_)
|
| - client_->WillDrawSurface();
|
| + client_->WillDrawSurface(local_surface_id, damage_rect);
|
| }
|
|
|
| void OffscreenCanvasCompositorFrameSink::OnClientConnectionLost() {
|
|
|