| Index: ppapi/proxy/dispatcher.cc
 | 
| diff --git a/ppapi/proxy/dispatcher.cc b/ppapi/proxy/dispatcher.cc
 | 
| index c0b71c658087efa8944bfe90e01bd92546ff7c61..02bc650fe2e038afb04f8e2fa64f9dbaf47fd3e4 100644
 | 
| --- a/ppapi/proxy/dispatcher.cc
 | 
| +++ b/ppapi/proxy/dispatcher.cc
 | 
| @@ -47,6 +47,7 @@
 | 
|  #include "ppapi/proxy/ppapi_messages.h"
 | 
|  #include "ppapi/proxy/ppb_audio_config_proxy.h"
 | 
|  #include "ppapi/proxy/ppb_audio_proxy.h"
 | 
| +#include "ppapi/proxy/ppb_broker_proxy.h"
 | 
|  #include "ppapi/proxy/ppb_buffer_proxy.h"
 | 
|  #include "ppapi/proxy/ppb_char_set_proxy.h"
 | 
|  #include "ppapi/proxy/ppb_console_proxy.h"
 | 
| @@ -108,6 +109,7 @@ InterfaceList::InterfaceList() {
 | 
|    // PPB (browser) interfaces.
 | 
|    AddPPB(PPB_AudioConfig_Proxy::GetInfo());
 | 
|    AddPPB(PPB_Audio_Proxy::GetInfo());
 | 
| +  AddPPB(PPB_Broker_Proxy::GetInfo());
 | 
|    AddPPB(PPB_Buffer_Proxy::GetInfo());
 | 
|    AddPPB(PPB_CharSet_Proxy::GetInfo());
 | 
|    AddPPB(PPB_Console_Proxy::GetInfo());
 | 
| 
 |