| 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 254d747b6d1bdaa98ce2d199de0ed997b5f43c9c..dbd2182ee120332f6f1750c59e8e6ab17bade4ef 100644
|
| --- a/content/common/gpu/image_transport_surface_mac.cc
|
| +++ b/content/common/gpu/image_transport_surface_mac.cc
|
| @@ -61,7 +61,6 @@ class IOSurfaceImageTransportSurface
|
| // ImageTransportSurface implementation
|
| virtual void OnBufferPresented(
|
| const AcceleratedSurfaceMsg_BufferPresented_Params& params) OVERRIDE;
|
| - virtual void OnResizeViewACK() OVERRIDE;
|
| virtual void OnResize(gfx::Size size, float scale_factor) OVERRIDE;
|
| virtual void SetLatencyInfo(
|
| const std::vector<ui::LatencyInfo>&) OVERRIDE;
|
| @@ -301,10 +300,6 @@ void IOSurfaceImageTransportSurface::OnBufferPresented(
|
| }
|
| }
|
|
|
| -void IOSurfaceImageTransportSurface::OnResizeViewACK() {
|
| - NOTREACHED();
|
| -}
|
| -
|
| void IOSurfaceImageTransportSurface::OnResize(gfx::Size size,
|
| float scale_factor) {
|
| // This trace event is used in gpu_feature_browsertest.cc - the test will need
|
| @@ -545,7 +540,7 @@ scoped_refptr<gfx::GLSurface> ImageTransportSurface::CreateNativeSurface(
|
| if (!surface.get() || !surface->Initialize())
|
| return surface;
|
| return scoped_refptr<gfx::GLSurface>(new PassThroughImageTransportSurface(
|
| - manager, stub, surface.get(), false));
|
| + manager, stub, surface.get()));
|
| }
|
| }
|
|
|
|
|