| Index: ppapi/proxy/dispatcher.cc
|
| diff --git a/ppapi/proxy/dispatcher.cc b/ppapi/proxy/dispatcher.cc
|
| index 6229bc7865d7de1ff7b3f507d3f712455196357f..67d1fd6e2cafc09caae0a00d38676dad64a3c86e 100644
|
| --- a/ppapi/proxy/dispatcher.cc
|
| +++ b/ppapi/proxy/dispatcher.cc
|
| @@ -41,6 +41,7 @@
|
| #include "ppapi/c/private/ppb_flash_menu.h"
|
| #include "ppapi/c/private/ppb_flash_net_connector.h"
|
| #include "ppapi/c/private/ppb_flash_tcp_socket.h"
|
| +#include "ppapi/c/private/ppb_flash_udp_socket.h"
|
| #include "ppapi/c/private/ppb_pdf.h"
|
| #include "ppapi/c/trusted/ppb_url_loader_trusted.h"
|
| #include "ppapi/proxy/ppapi_messages.h"
|
| @@ -63,6 +64,7 @@
|
| #include "ppapi/proxy/ppb_flash_menu_proxy.h"
|
| #include "ppapi/proxy/ppb_flash_net_connector_proxy.h"
|
| #include "ppapi/proxy/ppb_flash_tcp_socket_proxy.h"
|
| +#include "ppapi/proxy/ppb_flash_udp_socket_proxy.h"
|
| #include "ppapi/proxy/ppb_font_proxy.h"
|
| #include "ppapi/proxy/ppb_graphics_2d_proxy.h"
|
| #include "ppapi/proxy/ppb_graphics_3d_proxy.h"
|
| @@ -141,6 +143,7 @@ InterfaceList::InterfaceList() {
|
| AddPPB(PPB_Flash_Menu_Proxy::GetInfo());
|
| AddPPB(PPB_Flash_Proxy::GetInfo());
|
| AddPPB(PPB_Flash_TCPSocket_Proxy::GetInfo());
|
| + AddPPB(PPB_Flash_UDPSocket_Proxy::GetInfo());
|
| AddPPB(PPB_Font_Proxy::GetInfo());
|
| AddPPB(PPB_Graphics2D_Proxy::GetInfo());
|
| AddPPB(PPB_Graphics3D_Proxy::GetInfo());
|
|
|