| Index: ppapi/c/private/ppb_proxy_private.h
|
| ===================================================================
|
| --- ppapi/c/private/ppb_proxy_private.h (revision 81833)
|
| +++ ppapi/c/private/ppb_proxy_private.h (working copy)
|
| @@ -38,6 +38,12 @@
|
| // buffer. Returns 0 on failure or if the url loader doesn't have any data
|
| // now.
|
| int32_t (*GetURLLoaderBufferedBytes)(PP_Resource url_loader);
|
| +
|
| + // Allows adding additional refcounts to the PluginModule that owns the
|
| + // proxy dispatcher (and all interface proxies). For every AddRef call
|
| + // there must be a corresponding release call.
|
| + void (*AddRefModule)(PP_Module module);
|
| + void (*ReleaseModule)(PP_Module module);
|
| };
|
|
|
| #endif // PPAPI_C_PRIVATE_PROXY_PRIVATE_H_
|
|
|