Index: ppapi/proxy/ppb_graphics_3d_proxy.h |
diff --git a/ppapi/proxy/ppb_graphics_3d_proxy.h b/ppapi/proxy/ppb_graphics_3d_proxy.h |
index ffda80c754ad98c84c43516a50686b78d34950bb..7a13b9ee2d4b73a8a206f51e95237e4e83691ec4 100644 |
--- a/ppapi/proxy/ppb_graphics_3d_proxy.h |
+++ b/ppapi/proxy/ppb_graphics_3d_proxy.h |
@@ -48,17 +48,11 @@ class Graphics3D : public PPB_Graphics3D_Shared { |
virtual uint32_t InsertSyncPoint() OVERRIDE; |
private: |
- class LockingCommandBuffer; |
- |
// PPB_Graphics3D_Shared overrides. |
virtual gpu::CommandBuffer* GetCommandBuffer() OVERRIDE; |
virtual int32 DoSwapBuffers() OVERRIDE; |
- virtual void PushAlreadyLocked() OVERRIDE; |
- virtual void PopAlreadyLocked() OVERRIDE; |
- int num_already_locked_calls_; |
scoped_ptr<gpu::CommandBuffer> command_buffer_; |
- scoped_ptr<LockingCommandBuffer> locking_command_buffer_; |
DISALLOW_COPY_AND_ASSIGN(Graphics3D); |
}; |