| 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 4ef430e3505f330f00a8d13f68515cdf756e8db0..81d4ab92edcf5628aa7a81183b5606b0cac5813b 100644
|
| --- a/webkit/plugins/ppapi/resource_creation_impl.cc
|
| +++ b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| @@ -25,6 +25,7 @@
|
| #include "webkit/plugins/ppapi/ppb_flash_net_connector_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_graphics_2d_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_scrollbar_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_tcp_server_socket_private_impl.h"
|
| @@ -186,6 +187,11 @@ PP_Resource ResourceCreationImpl::CreateImageData(PP_Instance instance,
|
| return PPB_ImageData_Impl::Create(instance, format, size, init_to_zero);
|
| }
|
|
|
| +PP_Resource ResourceCreationImpl::CreateHostResolverPrivate(
|
| + PP_Instance instance) {
|
| + return PPB_HostResolver_Private_Impl::CreateResource(instance);
|
| +}
|
| +
|
| PP_Resource ResourceCreationImpl::CreateKeyboardInputEvent(
|
| PP_Instance instance,
|
| PP_InputEvent_Type type,
|
|
|