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

Unified Diff: ppapi/proxy/ppb_file_ref_proxy.h

Issue 7623018: Move host resource from the proxy to the shared_impl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed Created 9 years, 4 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/ppb_file_chooser_proxy.cc ('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 076bea2f9844b36ef98ad18b265e78d667d2b458..d03a9dd185a6d4d6d2e9cbbe7a38dbf279b26bb1 100644
--- a/ppapi/proxy/ppb_file_ref_proxy.h
+++ b/ppapi/proxy/ppb_file_ref_proxy.h
@@ -15,10 +15,13 @@
struct PPB_FileRef_Dev;
+namespace ppapi {
+class HostResource;
+}
+
namespace pp {
namespace proxy {
-class HostResource;
struct PPBFileRef_CreateInfo;
class PPB_FileRef_Proxy : public InterfaceProxy {
@@ -58,22 +61,22 @@ class PPB_FileRef_Proxy : public InterfaceProxy {
private:
// Message handlers.
- void OnMsgCreate(const HostResource& file_system,
+ void OnMsgCreate(const ppapi::HostResource& file_system,
const std::string& path,
PPBFileRef_CreateInfo* result);
- void OnMsgGetParent(const HostResource& host_resource,
+ void OnMsgGetParent(const ppapi::HostResource& host_resource,
PPBFileRef_CreateInfo* result);
- void OnMsgMakeDirectory(const HostResource& host_resource,
+ void OnMsgMakeDirectory(const ppapi::HostResource& host_resource,
PP_Bool make_ancestors,
uint32_t serialized_callback);
- void OnMsgTouch(const HostResource& host_resource,
+ void OnMsgTouch(const ppapi::HostResource& host_resource,
PP_Time last_access,
PP_Time last_modified,
uint32_t serialized_callback);
- void OnMsgDelete(const HostResource& host_resource,
+ void OnMsgDelete(const ppapi::HostResource& host_resource,
uint32_t serialized_callback);
- void OnMsgRename(const HostResource& file_ref,
- const HostResource& new_file_ref,
+ void OnMsgRename(const ppapi::HostResource& file_ref,
+ const ppapi::HostResource& new_file_ref,
uint32_t serialized_callback);
DISALLOW_COPY_AND_ASSIGN(PPB_FileRef_Proxy);
« no previous file with comments | « ppapi/proxy/ppb_file_chooser_proxy.cc ('k') | ppapi/proxy/ppb_file_ref_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698