Index: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc |
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc |
index 796e5dcb1a0f8d6c6598e93b1ce95ca9a5f5f64e..341c959f8036d3fd72b38f61738ca95f4d13dcab 100644 |
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc |
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb.cc |
@@ -21,6 +21,7 @@ |
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_gamepad.h" |
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_2d.h" |
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_3d.h" |
+#include "native_client/src/shared/ppapi_proxy/plugin_ppb_host_resolver_private.h" |
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_image_data.h" |
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_input_event.h" |
#include "native_client/src/shared/ppapi_proxy/plugin_ppb_instance.h" |
@@ -73,6 +74,8 @@ InterfaceMapElement interface_map[] = { |
{ PPB_GAMEPAD_INTERFACE, PluginGamepad::GetInterface(), true }, |
{ PPB_GRAPHICS_2D_INTERFACE, PluginGraphics2D::GetInterface(), true }, |
{ PPB_GRAPHICS_3D_INTERFACE, PluginGraphics3D::GetInterface(), true }, |
+ { PPB_HOSTRESOLVER_PRIVATE_INTERFACE, |
+ PluginHostResolverPrivate::GetInterface(), true }, |
{ PPB_IMAGEDATA_INTERFACE, PluginImageData::GetInterface(), true }, |
{ PPB_INPUT_EVENT_INTERFACE, PluginInputEvent::GetInterface(), true }, |
{ PPB_INSTANCE_INTERFACE, PluginInstance::GetInterface(), true }, |