Index: ppapi/proxy/ppb_buffer_proxy.cc |
diff --git a/ppapi/proxy/ppb_buffer_proxy.cc b/ppapi/proxy/ppb_buffer_proxy.cc |
index 957108a4e5f01f1e486d32bc3a14b1067a9e9d07..c7aba70d1c70ccca46e88713f44fa5ce71f01a8d 100644 |
--- a/ppapi/proxy/ppb_buffer_proxy.cc |
+++ b/ppapi/proxy/ppb_buffer_proxy.cc |
@@ -78,7 +78,7 @@ PP_Resource PPB_Buffer_Proxy::CreateProxyResource(PP_Instance instance, |
HostResource result; |
base::SharedMemoryHandle shm_handle = base::SharedMemory::NULLHandle(); |
dispatcher->Send(new PpapiHostMsg_PPBBuffer_Create( |
- INTERFACE_ID_PPB_BUFFER, instance, size, |
+ API_ID_PPB_BUFFER, instance, size, |
&result, &shm_handle)); |
if (result.is_null() || !base::SharedMemory::IsHandleValid(shm_handle)) |
return 0; |