| Index: ppapi/proxy/ppb_buffer_proxy.h
|
| diff --git a/ppapi/proxy/ppb_buffer_proxy.h b/ppapi/proxy/ppb_buffer_proxy.h
|
| index 752ab8a62e1ca35c2cf97266e9360ac9e1d89ded..9682bb686cd051d7e320c7df8002dd234ff9b6f3 100644
|
| --- a/ppapi/proxy/ppb_buffer_proxy.h
|
| +++ b/ppapi/proxy/ppb_buffer_proxy.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef PPAPI_PPB_BUFFER_PROXY_H_
|
| #define PPAPI_PPB_BUFFER_PROXY_H_
|
|
|
| +#include "base/shared_memory.h"
|
| #include "ppapi/c/pp_instance.h"
|
| #include "ppapi/proxy/interface_proxy.h"
|
|
|
| @@ -37,7 +38,7 @@ class PPB_Buffer_Proxy : public InterfaceProxy {
|
| void OnMsgCreate(PP_Instance instance,
|
| uint32_t size,
|
| HostResource* result_resource,
|
| - int* result_shm_handle);
|
| + base::SharedMemoryHandle* result_shm_handle);
|
| };
|
|
|
| } // namespace proxy
|
|
|