Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Unified Diff: ppapi/proxy/ppb_graphics_3d_proxy.h

Issue 24466004: PPAPI: Make GLES2 calls resilient to bad/dead resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add AssertAcquiredDebugOnly Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698