Index: content/common/gpu/image_transport_surface_win.cc |
diff --git a/content/common/gpu/image_transport_surface_win.cc b/content/common/gpu/image_transport_surface_win.cc |
index 54d9e0627de29d2b91a75ea8c518c861f1ee530c..1914c5d381f18f1d072a76b7a6a27c5fc93b07e3 100644 |
--- a/content/common/gpu/image_transport_surface_win.cc |
+++ b/content/common/gpu/image_transport_surface_win.cc |
@@ -50,7 +50,8 @@ class PbufferImageTransportSurface |
protected: |
// ImageTransportSurface implementation |
- virtual void OnBufferPresented(bool presented, uint32 sync_point) OVERRIDE; |
+ virtual void OnBufferPresented(uint64 surface_handle, |
+ uint32 sync_point) OVERRIDE; |
virtual void OnResizeViewACK() OVERRIDE; |
virtual void OnResize(gfx::Size size) OVERRIDE; |
virtual gfx::Size GetSize() OVERRIDE; |
@@ -206,7 +207,7 @@ void PbufferImageTransportSurface::SendBuffersSwapped() { |
is_swap_buffers_pending_ = true; |
} |
-void PbufferImageTransportSurface::OnBufferPresented(bool presented, |
+void PbufferImageTransportSurface::OnBufferPresented(uint64 surface_handle, |
uint32 sync_point) { |
is_swap_buffers_pending_ = false; |
if (did_unschedule_) { |