Chromium Code Reviews| Index: ppapi/proxy/resource_creation_proxy.cc |
| diff --git a/ppapi/proxy/resource_creation_proxy.cc b/ppapi/proxy/resource_creation_proxy.cc |
| index 8445075cdb91a7da334ee9b706c04468cfe4903f..d0f4d60d775783c8fd0f48394adc245ff47f6efd 100644 |
| --- a/ppapi/proxy/resource_creation_proxy.cc |
| +++ b/ppapi/proxy/resource_creation_proxy.cc |
| @@ -19,6 +19,7 @@ |
| #include "ppapi/proxy/host_resolver_private_resource.h" |
| #include "ppapi/proxy/host_resolver_resource.h" |
| #include "ppapi/proxy/net_address_resource.h" |
| +#include "ppapi/proxy/output_protection_resource.h" |
| #include "ppapi/proxy/plugin_dispatcher.h" |
| #include "ppapi/proxy/plugin_globals.h" |
| #include "ppapi/proxy/plugin_resource_tracker.h" |
| @@ -306,6 +307,12 @@ PP_Resource ResourceCreationProxy::CreateNetworkMonitorPrivate( |
| return PPB_NetworkMonitor_Private_Proxy::CreateProxyResource(instance); |
| } |
| +PP_Resource ResourceCreationProxy::CreateOutputProtectionPrivate( |
| + PP_Instance instance) { |
| + return (new OutputProtectionResource(GetConnection(), instance)) |
| + ->GetReference(); |
|
dmichael (off chromium)
2013/09/09 20:37:15
nit: "->" should go on the end of 312
kcwu
2013/09/10 12:50:21
Done.
|
| +} |
| + |
| PP_Resource ResourceCreationProxy::CreatePrinting(PP_Instance instance) { |
| return (new PrintingResource(GetConnection(), instance))->GetReference(); |
| } |