| Index: content/ppapi_plugin/ppapi_thread.h
|
| ===================================================================
|
| --- content/ppapi_plugin/ppapi_thread.h (revision 138610)
|
| +++ content/ppapi_plugin/ppapi_thread.h (working copy)
|
| @@ -60,6 +60,17 @@
|
|
|
| // PluginProxyDelegate.
|
| virtual bool SendToBrowser(IPC::Message* msg) OVERRIDE;
|
| + virtual int32_t SendOpenFileRequestToBrowser(
|
| + const char* path, int32_t mode, PP_FileHandle* file) OVERRIDE;
|
| + virtual int32_t SendRenameFileRequestToBrowser(
|
| + const char* from_path, const char* to_path) OVERRIDE;
|
| + virtual int32_t SendDeleteFileOrDirRequestToBrowser(
|
| + const char* path, PP_Bool recursive) OVERRIDE;
|
| + virtual int32_t SendCreateDirRequestToBrowser(const char* path) OVERRIDE;
|
| + virtual int32_t SendQueryFileRequestToBrowser(
|
| + const char* path, PP_FileInfo* info) OVERRIDE;
|
| + virtual int32_t SendGetDirContentsRequestToBrowser(
|
| + const char* path, PP_DirContents_Dev** contents) OVERRIDE;
|
| virtual void PreCacheFont(const void* logfontw) OVERRIDE;
|
|
|
| // Message handlers.
|
|
|