| Index: content/renderer/pepper/ppb_graphics_3d_impl.cc
|
| diff --git a/content/renderer/pepper/ppb_graphics_3d_impl.cc b/content/renderer/pepper/ppb_graphics_3d_impl.cc
|
| index 46ea9463e8089d61fba0e974b75eee67aea3cabf..c999fad4f0bc5da324bd0bdbbd7fe93edd4d3808 100644
|
| --- a/content/renderer/pepper/ppb_graphics_3d_impl.cc
|
| +++ b/content/renderer/pepper/ppb_graphics_3d_impl.cc
|
| @@ -80,7 +80,7 @@ PP_Resource PPB_Graphics3D_Impl::CreateRaw(
|
| const int32_t* attrib_list,
|
| gpu::Capabilities* capabilities,
|
| base::SharedMemoryHandle* shared_state_handle,
|
| - uint64_t* command_buffer_id) {
|
| + gpu::CommandBufferId* command_buffer_id) {
|
| PPB_Graphics3D_API* share_api = NULL;
|
| if (share_context) {
|
| EnterResourceNoLock<PPB_Graphics3D_API> enter(share_context, true);
|
| @@ -215,12 +215,11 @@ bool PPB_Graphics3D_Impl::Init(PPB_Graphics3D_API* share_context,
|
| return CreateGLES2Impl(kCommandBufferSize, kTransferBufferSize, share_gles2);
|
| }
|
|
|
| -bool PPB_Graphics3D_Impl::InitRaw(
|
| - PPB_Graphics3D_API* share_context,
|
| - const int32_t* attrib_list,
|
| - gpu::Capabilities* capabilities,
|
| - base::SharedMemoryHandle* shared_state_handle,
|
| - uint64_t* command_buffer_id) {
|
| +bool PPB_Graphics3D_Impl::InitRaw(PPB_Graphics3D_API* share_context,
|
| + const int32_t* attrib_list,
|
| + gpu::Capabilities* capabilities,
|
| + base::SharedMemoryHandle* shared_state_handle,
|
| + gpu::CommandBufferId* command_buffer_id) {
|
| PepperPluginInstanceImpl* plugin_instance =
|
| HostGlobals::Get()->GetInstance(pp_instance());
|
| if (!plugin_instance)
|
|
|