| Index: cc/surfaces/display.cc
|
| diff --git a/cc/surfaces/display.cc b/cc/surfaces/display.cc
|
| index c0c8b14e007ae0348be81093d9053f5f96c194c9..3238d80ba5aed268af6aafc3627eef438310a5a2 100644
|
| --- a/cc/surfaces/display.cc
|
| +++ b/cc/surfaces/display.cc
|
| @@ -355,6 +355,12 @@ void Display::DidSwapBuffersComplete() {
|
| renderer_->SwapBuffersComplete();
|
| }
|
|
|
| +void Display::DidReceiveTextureInUseResponses(
|
| + const gpu::TextureInUseResponses& responses) {
|
| + if (renderer_)
|
| + renderer_->DidReceiveTextureInUseResponses(responses);
|
| +}
|
| +
|
| void Display::SetBeginFrameSource(BeginFrameSource* source) {
|
| // It's expected that there's only a single source from the
|
| // BrowserCompositorOutputSurface that corresponds to vsync. The BFS is
|
|
|