diff options
author | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-01 00:17:22 +0000 |
---|---|---|
committer | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-01 00:17:22 +0000 |
commit | 914f5269eed1c8651d53f93d4181738f1344a108 (patch) | |
tree | 6ae9ea60cbccafaec2899eaf1ea7a4f958220302 /ppapi/proxy/ppb_graphics_3d_proxy.h | |
parent | 0fafc8de47e8aa377e3fb96fc914fbe7399fe9c6 (diff) | |
download | chromium_src-914f5269eed1c8651d53f93d4181738f1344a108.zip chromium_src-914f5269eed1c8651d53f93d4181738f1344a108.tar.gz chromium_src-914f5269eed1c8651d53f93d4181738f1344a108.tar.bz2 |
Remove unused trusted interfaces.
Several trusted interfaces were originally used internally by the IPC proxy and
the NaCl srpc proxy.
The IPC proxy switched to using C++ *_API classes directly, and the srpc proxy
is no more, so there's no user of these anymore.
BUG=None
Review URL: https://chromiumcodereview.appspot.com/16253003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203526 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppb_graphics_3d_proxy.h')
-rw-r--r-- | ppapi/proxy/ppb_graphics_3d_proxy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/proxy/ppb_graphics_3d_proxy.h b/ppapi/proxy/ppb_graphics_3d_proxy.h index 06fb308..1465539 100644 --- a/ppapi/proxy/ppb_graphics_3d_proxy.h +++ b/ppapi/proxy/ppb_graphics_3d_proxy.h @@ -34,15 +34,15 @@ class Graphics3D : public PPB_Graphics3D_Shared { // Graphics3DTrusted API. These are not implemented in the proxy. virtual PP_Bool SetGetBuffer(int32_t shm_id) OVERRIDE; - virtual PP_Graphics3DTrustedState GetState() OVERRIDE; + virtual gpu::CommandBuffer::State GetState() OVERRIDE; virtual PP_Bool Flush(int32_t put_offset) OVERRIDE; - virtual PP_Graphics3DTrustedState FlushSync(int32_t put_offset) OVERRIDE; + virtual gpu::CommandBuffer::State FlushSync(int32_t put_offset) OVERRIDE; virtual int32_t CreateTransferBuffer(uint32_t size) OVERRIDE; virtual PP_Bool DestroyTransferBuffer(int32_t id) OVERRIDE; virtual PP_Bool GetTransferBuffer(int32_t id, int* shm_handle, uint32_t* shm_size) OVERRIDE; - virtual PP_Graphics3DTrustedState FlushSyncFast( + virtual gpu::CommandBuffer::State FlushSyncFast( int32_t put_offset, int32_t last_known_get) OVERRIDE; virtual uint32_t InsertSyncPoint() OVERRIDE; |