| 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 9c8eed4ed576e33a11e1530578d78238a6463214..62296a7a571de66422e9ddfa0e3c8068378655e6 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_) {
|
|
|