| Index: ppapi/proxy/dispatcher.cc
|
| diff --git a/ppapi/proxy/dispatcher.cc b/ppapi/proxy/dispatcher.cc
|
| index d77c9051b7b21d3e6e13270f8d8bfdfc08fb66fe..52f8e9bbf5ef12a6e1ad2557dde55dd83353aff5 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"
|
| @@ -142,6 +144,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());
|
|
|