| Index: ppapi/proxy/ppapi_messages.h | 
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h | 
| index 270af8434ecedcf28024e223e5d0c12bca8cf33c..374996168962129c199e004050e1adbb22cd5840 100644 | 
| --- a/ppapi/proxy/ppapi_messages.h | 
| +++ b/ppapi/proxy/ppapi_messages.h | 
| @@ -83,6 +83,13 @@ IPC_MESSAGE_ROUTED5(PpapiMsg_PPBAudio_NotifyAudioStreamCreated, | 
| base::SharedMemoryHandle /* handle */, | 
| int32_t /* length */) | 
|  | 
| +// PPB_Broker. | 
| +IPC_MESSAGE_ROUTED3( | 
| +    PpapiMsg_PPBBroker_ConnectComplete, | 
| +    pp::proxy::HostResource /* broker */, | 
| +    IPC::PlatformFileForTransit /* handle */, | 
| +    int32_t /* result */) | 
| + | 
| // PPB_FileChooser. | 
| IPC_MESSAGE_ROUTED3( | 
| PpapiMsg_PPBFileChooser_ChooseComplete, | 
| @@ -238,6 +245,13 @@ IPC_SYNC_MESSAGE_ROUTED2_1( | 
| uint32_t /* requested */, | 
| uint32_t /* result */) | 
|  | 
| +// PPB_Broker. | 
| +IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBBroker_Create, | 
| +                           PP_Instance /* instance */, | 
| +                           pp::proxy::HostResource /* result_resource */) | 
| +IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBBroker_Connect, | 
| +                    pp::proxy::HostResource /* broker */) | 
| + | 
| // PPB_Buffer. | 
| IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create, | 
| PP_Instance /* instance */, | 
|  |