| Index: content/common/gpu/image_transport_surface_mac.cc
|
| diff --git a/content/common/gpu/image_transport_surface_mac.cc b/content/common/gpu/image_transport_surface_mac.cc
|
| index 7ebb04c81d7702b94b624c8d1d9904640d840201..0e008179fdc21601c2d514167e05a50631022e37 100644
|
| --- a/content/common/gpu/image_transport_surface_mac.cc
|
| +++ b/content/common/gpu/image_transport_surface_mac.cc
|
| @@ -61,6 +61,7 @@ class IOSurfaceImageTransportSurface : public gfx::NoOpGLSurfaceCGL,
|
| const AcceleratedSurfaceMsg_BufferPresented_Params& params) OVERRIDE;
|
| virtual void OnResizeViewACK() OVERRIDE;
|
| virtual void OnResize(gfx::Size size) OVERRIDE;
|
| + virtual void SetLatencyInfo(const cc::LatencyInfo&) OVERRIDE;
|
|
|
| private:
|
| virtual ~IOSurfaceImageTransportSurface() OVERRIDE;
|
| @@ -298,6 +299,11 @@ void IOSurfaceImageTransportSurface::OnResize(gfx::Size size) {
|
| CreateIOSurface();
|
| }
|
|
|
| +void IOSurfaceImageTransportSurface::SetLatencyInfo(
|
| + const cc::LatencyInfo&) {
|
| + // TODO: implement
|
| +}
|
| +
|
| void IOSurfaceImageTransportSurface::UnrefIOSurface() {
|
| // If we have resources to destroy, then make sure that we have a current
|
| // context which we can use to delete the resources.
|
|
|