| 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 7d68ba65143ab86cf5bba7dadab513f182225889..2fc73851240bbb2aad39cbfd9db03eb6b5b5885c 100644
|
| --- a/webkit/plugins/ppapi/resource_creation_impl.cc
|
| +++ b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| @@ -18,7 +18,6 @@
|
| #include "webkit/plugins/ppapi/ppb_file_system_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_flash_message_loop_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_graphics_3d_impl.h"
|
| -#include "webkit/plugins/ppapi/ppb_host_resolver_private_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_image_data_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_network_monitor_private_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_scrollbar_impl.h"
|
| @@ -132,7 +131,7 @@ PP_Resource ResourceCreationImpl::CreateGraphics3DRaw(
|
|
|
| PP_Resource ResourceCreationImpl::CreateHostResolverPrivate(
|
| PP_Instance instance) {
|
| - return (new PPB_HostResolver_Private_Impl(instance))->GetReference();
|
| + return 0; // Not supported in-process.
|
| }
|
|
|
| PP_Resource ResourceCreationImpl::CreateImageData(PP_Instance instance,
|
| @@ -235,6 +234,10 @@ PP_Resource ResourceCreationImpl::CreateTCPSocketPrivate(PP_Instance instance) {
|
| return PPB_TCPSocket_Private_Impl::CreateResource(instance);
|
| }
|
|
|
| +PP_Resource ResourceCreationImpl::CreateUDPSocketPrivate(PP_Instance instance) {
|
| + return 0; // Not supported in-process.
|
| +}
|
| +
|
| PP_Resource ResourceCreationImpl::CreateURLLoader(PP_Instance instance) {
|
| return (new PPB_URLLoader_Impl(instance, false))->GetReference();
|
| }
|
|
|