Index: webkit/plugins/ppapi/ppb_buffer_impl.h |
diff --git a/webkit/plugins/ppapi/ppb_buffer_impl.h b/webkit/plugins/ppapi/ppb_buffer_impl.h |
index 0f73b69c3c6c0005fba3146b9e8b7f3b0d303720..8d88faf96ce40a80b577323c899f9b8dd43a0f7d 100644 |
--- a/webkit/plugins/ppapi/ppb_buffer_impl.h |
+++ b/webkit/plugins/ppapi/ppb_buffer_impl.h |
@@ -19,8 +19,7 @@ namespace ppapi { |
class WEBKIT_PLUGINS_EXPORT PPB_Buffer_Impl : |
public ::ppapi::Resource, |
- public ::ppapi::thunk::PPB_Buffer_API, |
- public ::ppapi::thunk::PPB_BufferTrusted_API { |
+ public ::ppapi::thunk::PPB_Buffer_API { |
public: |
virtual ~PPB_Buffer_Impl(); |
@@ -35,15 +34,12 @@ class WEBKIT_PLUGINS_EXPORT PPB_Buffer_Impl : |
// Resource overrides. |
virtual ::ppapi::thunk::PPB_Buffer_API* AsPPB_Buffer_API() OVERRIDE; |
- virtual ::ppapi::thunk::PPB_BufferTrusted_API* AsPPB_BufferTrusted_API(); |
// PPB_Buffer_API implementation. |
virtual PP_Bool Describe(uint32_t* size_in_bytes) OVERRIDE; |
virtual PP_Bool IsMapped() OVERRIDE; |
virtual void* Map() OVERRIDE; |
virtual void Unmap() OVERRIDE; |
- |
- // PPB_BufferTrusted_API implementation. |
dmichael (off chromium)
2013/03/20 16:50:37
I think it's worth still commenting that this is T
teravest
2013/03/20 17:03:27
Done.
|
virtual int32_t GetSharedMemory(int* handle) OVERRIDE; |
private: |