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

Unified Diff: content/ppapi_plugin/ppapi_thread.h

Issue 10387195: Open pepper files directly in browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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
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.

Powered by Google App Engine
This is Rietveld 408576698