Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1041)

Unified Diff: ppapi/proxy/ppb_file_ref_proxy.h

Issue 13726024: Refactor FileSystem (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: NON_EXPORTED_BASE Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/proxy/ppapi_messages.h ('k') | ppapi/proxy/ppb_file_ref_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « ppapi/proxy/ppapi_messages.h ('k') | ppapi/proxy/ppb_file_ref_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698