| Index: webkit/plugins/ppapi/resource_creation_impl.cc
|
| diff --git a/webkit/plugins/ppapi/resource_creation_impl.cc b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| index e0ca2fe034e0463863b3aad654cd3f89427e5a7b..fef56133a15f003dca446fb46acecdccf04e153d 100644
|
| --- a/webkit/plugins/ppapi/resource_creation_impl.cc
|
| +++ b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| @@ -27,6 +27,7 @@
|
| #include "webkit/plugins/ppapi/ppb_graphics_3d_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_image_data_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_scrollbar_impl.h"
|
| +#include "webkit/plugins/ppapi/ppb_tcp_server_socket_private_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_tcp_socket_private_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_transport_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_udp_socket_private_impl.h"
|
| @@ -257,6 +258,11 @@ PP_Resource ResourceCreationImpl::CreateResourceArray(
|
| return object->GetReference();
|
| }
|
|
|
| +PP_Resource ResourceCreationImpl::CreateTCPServerSocketPrivate(
|
| + PP_Instance instance) {
|
| + return PPB_TCPServerSocket_Private_Impl::CreateResource(instance);
|
| +}
|
| +
|
| PP_Resource ResourceCreationImpl::CreateTCPSocketPrivate(PP_Instance instance) {
|
| return PPB_TCPSocket_Private_Impl::CreateResource(instance);
|
| }
|
|
|