| Index: ppapi/proxy/ppb_file_ref_proxy.h
|
| diff --git a/ppapi/proxy/ppb_file_ref_proxy.h b/ppapi/proxy/ppb_file_ref_proxy.h
|
| index 37caa1e90d2fb1424e26ca8544e86858e5742250..27438476f78af14d5a1f274b0b8fe04d2697c11c 100644
|
| --- a/ppapi/proxy/ppb_file_ref_proxy.h
|
| +++ b/ppapi/proxy/ppb_file_ref_proxy.h
|
| @@ -33,7 +33,8 @@ class PPAPI_PROXY_EXPORT PPB_FileRef_Proxy
|
| explicit PPB_FileRef_Proxy(Dispatcher* dispatcher);
|
| virtual ~PPB_FileRef_Proxy();
|
|
|
| - static PP_Resource CreateProxyResource(PP_Resource file_system,
|
| + static PP_Resource CreateProxyResource(PP_Instance instance,
|
| + PP_Resource file_system,
|
| const char* path);
|
| static PP_Resource CreateProxyResource(
|
| const PPB_FileRef_CreateInfo& serialized);
|
| @@ -64,7 +65,8 @@ class PPAPI_PROXY_EXPORT PPB_FileRef_Proxy
|
|
|
| private:
|
| // Plugin -> host message handlers.
|
| - void OnMsgCreate(const HostResource& file_system,
|
| + void OnMsgCreate(PP_Instance instance,
|
| + PP_Resource file_system,
|
| const std::string& path,
|
| PPB_FileRef_CreateInfo* result);
|
| void OnMsgGetParent(const HostResource& host_resource,
|
|
|