| Index: ppapi/proxy/interface_list.cc
|
| diff --git a/ppapi/proxy/interface_list.cc b/ppapi/proxy/interface_list.cc
|
| index 9bf73c27a03874936a29f542c6631754eba2b951..06fe5468d3411311097be69499bc5650b0794495 100644
|
| --- a/ppapi/proxy/interface_list.cc
|
| +++ b/ppapi/proxy/interface_list.cc
|
| @@ -104,6 +104,7 @@
|
| #include "ppapi/proxy/ppp_instance_proxy.h"
|
| #include "ppapi/proxy/ppp_messaging_proxy.h"
|
| #include "ppapi/proxy/ppp_mouse_lock_proxy.h"
|
| +#include "ppapi/proxy/ppp_printing_proxy.h"
|
| #include "ppapi/proxy/ppp_video_decoder_proxy.h"
|
| #include "ppapi/proxy/resource_creation_proxy.h"
|
| #include "ppapi/shared_impl/ppb_opengles2_shared.h"
|
| @@ -204,6 +205,9 @@ InterfaceList::InterfaceList() {
|
| AddProxy(API_ID_PPP_INSTANCE, &ProxyFactory<PPP_Instance_Proxy>);
|
| AddPPP(PPP_INSTANCE_INTERFACE_1_1, API_ID_PPP_INSTANCE,
|
| PPP_Instance_Proxy::GetInstanceInterface());
|
| + AddProxy(API_ID_PPP_PRINTING, &ProxyFactory<PPP_Printing_Proxy>);
|
| + AddPPP(PPP_PRINTING_DEV_INTERFACE, API_ID_PPP_PRINTING,
|
| + PPP_Printing_Proxy::GetProxyInterface());
|
|
|
| // Old-style GetInfo PPP interfaces.
|
| // Do not add more stuff here, they should be added to interface_list*.h
|
|
|