| Index: ppapi/cpp/resource.h
|
| diff --git a/ppapi/cpp/resource.h b/ppapi/cpp/resource.h
|
| index 8f5a92d2e1214815bd1762800fe39ae1b396739d..2911f8cd8b23d0071f7cb8a0e51a1048a836105b 100644
|
| --- a/ppapi/cpp/resource.h
|
| +++ b/ppapi/cpp/resource.h
|
| @@ -14,6 +14,8 @@
|
| /// with the module.
|
| namespace pp {
|
|
|
| +class VarResource_Dev;
|
| +
|
| /// A reference counted module resource.
|
| class Resource {
|
| public:
|
| @@ -82,6 +84,8 @@ class Resource {
|
| void PassRefFromConstructor(PP_Resource resource);
|
|
|
| private:
|
| + friend class VarResource_Dev;
|
| +
|
| PP_Resource pp_resource_;
|
| };
|
|
|
|
|