| Index: ppapi/proxy/dispatcher.cc
|
| diff --git a/ppapi/proxy/dispatcher.cc b/ppapi/proxy/dispatcher.cc
|
| index b34ce485b8498ae38337918c999f53c49ab1be99..498aadc745e780b810f90a0743326b877296e1a1 100644
|
| --- a/ppapi/proxy/dispatcher.cc
|
| +++ b/ppapi/proxy/dispatcher.cc
|
| @@ -66,6 +66,7 @@
|
| #include "ppapi/proxy/ppb_gles_chromium_texture_mapping_proxy.h"
|
| #include "ppapi/proxy/ppb_graphics_2d_proxy.h"
|
| #include "ppapi/proxy/ppb_image_data_proxy.h"
|
| +#include "ppapi/proxy/ppb_instance_private_proxy.h"
|
| #include "ppapi/proxy/ppb_instance_proxy.h"
|
| #include "ppapi/proxy/ppb_opengles2_proxy.h"
|
| #include "ppapi/proxy/ppb_pdf_proxy.h"
|
| @@ -78,6 +79,7 @@
|
| #include "ppapi/proxy/ppb_var_deprecated_proxy.h"
|
| #include "ppapi/proxy/ppp_class_proxy.h"
|
| #include "ppapi/proxy/ppp_graphics_3d_proxy.h"
|
| +#include "ppapi/proxy/ppp_instance_private_proxy.h"
|
| #include "ppapi/proxy/ppp_instance_proxy.h"
|
| #include "ppapi/proxy/var_serialization_rules.h"
|
|
|
| @@ -130,6 +132,7 @@ InterfaceList::InterfaceList() {
|
| AddPPB(PPB_GLESChromiumTextureMapping_Proxy::GetInfo());
|
| AddPPB(PPB_Graphics2D_Proxy::GetInfo());
|
| AddPPB(PPB_ImageData_Proxy::GetInfo());
|
| + AddPPB(PPB_Instance_Private_Proxy::GetInfo());
|
| AddPPB(PPB_Instance_Proxy::GetInfo());
|
| AddPPB(PPB_OpenGLES2_Proxy::GetInfo());
|
| AddPPB(PPB_PDF_Proxy::GetInfo());
|
| @@ -148,6 +151,7 @@ InterfaceList::InterfaceList() {
|
|
|
| // PPP (plugin) interfaces.
|
| AddPPP(PPP_Graphics3D_Proxy::GetInfo());
|
| + AddPPP(PPP_Instance_Private_Proxy::GetInfo());
|
| AddPPP(PPP_Instance_Proxy::GetInfo());
|
| }
|
|
|
|
|