Index: webkit/plugins/ppapi/plugin_module.cc |
diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc |
index f3c92bbf5f9bcee9252e0b811fb551e46e1e5954..27d725fc75a428e624590779f048220dafac79fa 100644 |
--- a/webkit/plugins/ppapi/plugin_module.cc |
+++ b/webkit/plugins/ppapi/plugin_module.cc |
@@ -66,6 +66,7 @@ |
#include "ppapi/c/private/ppb_flash_file.h" |
#include "ppapi/c/private/ppb_flash_fullscreen.h" |
#include "ppapi/c/private/ppb_flash_tcp_socket.h" |
+#include "ppapi/c/private/ppb_flash_udp_socket.h" |
#include "ppapi/c/private/ppb_gpu_blacklist_private.h" |
#include "ppapi/c/private/ppb_instance_private.h" |
#include "ppapi/c/private/ppb_pdf.h" |
@@ -270,6 +271,8 @@ const void* GetInterface(const char* name) { |
return ::ppapi::thunk::GetPPB_Flash_Menu_Thunk(); |
if (strcmp(name, PPB_FLASH_TCPSOCKET_INTERFACE) == 0) |
return ::ppapi::thunk::GetPPB_Flash_TCPSocket_Thunk(); |
+ if (strcmp(name, PPB_FLASH_UDPSOCKET_INTERFACE) == 0) |
+ return ::ppapi::thunk::GetPPB_Flash_UDPSocket_Thunk(); |
if (strcmp(name, PPB_GPU_BLACKLIST_INTERFACE) == 0) |
return PPB_GpuBlacklist_Private_Impl::GetInterface(); |
if (strcmp(name, PPB_GRAPHICS_3D_TRUSTED_INTERFACE) == 0) |