Index: ppapi/proxy/file_io_resource.h |
diff --git a/ppapi/proxy/file_io_resource.h b/ppapi/proxy/file_io_resource.h |
index a2b928dcd840b81958ffab3bbb32ac3435c97b92..dffa940b046e904828a6b7ba32e66f1a45bad30a 100644 |
--- a/ppapi/proxy/file_io_resource.h |
+++ b/ppapi/proxy/file_io_resource.h |
@@ -72,8 +72,9 @@ class PPAPI_PROXY_EXPORT FileIOResource |
const PP_ArrayOutput& array_output, |
scoped_refptr<TrackedCallback> callback); |
- // Handlers of reply messages. Note that all of them have a callback |
- // parameters bound when call to the host. |
+ void CloseFileHandle(); |
+ |
+ // Reply message handlers for operations that are done in the host. |
void OnPluginMsgGeneralComplete(scoped_refptr<TrackedCallback> callback, |
const ResourceMessageReplyParams& params); |
void OnPluginMsgOpenFileComplete(scoped_refptr<TrackedCallback> callback, |
@@ -91,6 +92,8 @@ class PPAPI_PROXY_EXPORT FileIOResource |
PP_FileHandle* output_handle, |
const ResourceMessageReplyParams& params); |
+ PP_FileHandle file_handle_; |
+ PP_FileSystemType file_system_type_; |
FileIOStateManager state_manager_; |
DISALLOW_COPY_AND_ASSIGN(FileIOResource); |