| Index: cc/surfaces/display.cc
|
| diff --git a/cc/surfaces/display.cc b/cc/surfaces/display.cc
|
| index f109a97c057f9842231511db51ce19ce62945c93..29559f6b97ccda25b51bcaab3aff1a87c37c713b 100644
|
| --- a/cc/surfaces/display.cc
|
| +++ b/cc/surfaces/display.cc
|
| @@ -340,6 +340,12 @@ void Display::CommitVSyncParameters(base::TimeTicks timebase,
|
| NOTREACHED();
|
| }
|
|
|
| +void Display::DidReceiveTextureInUseResponses(
|
| + const gpu::TextureInUseResponses& responses) {
|
| + if (renderer_)
|
| + renderer_->DidReceiveTextureInUseResponses(responses);
|
| +}
|
| +
|
| void Display::SetBeginFrameSource(BeginFrameSource* source) {
|
| // The BeginFrameSource is set from the constructor, it doesn't come
|
| // from the OutputSurface for the Display.
|
|
|