| Index: ppapi/proxy/ppapi_command_buffer_proxy.h
|
| diff --git a/ppapi/proxy/ppapi_command_buffer_proxy.h b/ppapi/proxy/ppapi_command_buffer_proxy.h
|
| index 603ea36038a2d3a041178e024161b305ae75e865..2113b3680b3becc9ee103c89bdfefe67b2b5c216 100644
|
| --- a/ppapi/proxy/ppapi_command_buffer_proxy.h
|
| +++ b/ppapi/proxy/ppapi_command_buffer_proxy.h
|
| @@ -45,7 +45,6 @@ class PPAPI_PROXY_EXPORT PpapiCommandBufferProxy
|
| virtual void SetParseError(gpu::error::Error error) OVERRIDE;
|
| virtual void SetContextLostReason(gpu::error::ContextLostReason reason)
|
| OVERRIDE;
|
| - virtual uint32 InsertSyncPoint() OVERRIDE;
|
|
|
| // gpu::GpuControl implementation:
|
| virtual bool SupportsGpuMemoryBuffer() OVERRIDE;
|
| @@ -55,6 +54,9 @@ class PPAPI_PROXY_EXPORT PpapiCommandBufferProxy
|
| unsigned internalformat,
|
| int32* id) OVERRIDE;
|
| virtual void DestroyGpuMemoryBuffer(int32 id) OVERRIDE;
|
| + virtual uint32 InsertSyncPoint() OVERRIDE;
|
| + virtual void SignalSyncPoint(uint32 sync_point,
|
| + const base::Closure& callback) OVERRIDE;
|
|
|
| private:
|
| bool Send(IPC::Message* msg);
|
|
|