diff options
author | victorhsieh@chromium.org <victorhsieh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-08 18:04:58 +0000 |
---|---|---|
committer | victorhsieh@chromium.org <victorhsieh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-08 18:04:58 +0000 |
commit | d196ccaf213718d4b3d33f2c07021ef86ce86253 (patch) | |
tree | 7d993de1cf5675e7730e3e1038b3c560f29818e4 /ppapi/shared_impl/resource.h | |
parent | 24e1ffbfc1e82294e909ce031e7aeaa8b8cca205 (diff) | |
download | chromium_src-d196ccaf213718d4b3d33f2c07021ef86ce86253.zip chromium_src-d196ccaf213718d4b3d33f2c07021ef86ce86253.tar.gz chromium_src-d196ccaf213718d4b3d33f2c07021ef86ce86253.tar.bz2 |
CRX FileSystem Pepper private API
pp::ExtCrxFileSystemPrivate is introduced in this change to allow plugin to mount (readonly) CRX extension directory as a filesystem. Files can be access through pp::ExtCrxFileRefPrivate (which is a subclass of pp::FileRef) just like normal file, and the path would look like "/manifest.json". See ppapi/example/crxfs for example.
Some keypoints in this change:
* pepper resource/host architecture:
- please refer to ppapi/proxy/ext_crx_file_system_private_resource.h.
* webkit/fileapi related:
- Changes run in browser
- Isoloated filesystem is the underlying filesystem
- Grant read permission to corresponding renderer of the plugin
- See chrome/browser/renderer_host/pepper/pepper_ext_crx_file_system_browser_host.cc
* extension related:
- Changes run in browser
- This is for getting extension installed directory to mount
TEST=out/Debug/chrome
--register-pepper-plugins="out/Debug/lib/libppapi_example_crxfs.so#PPAPI Tests##1.2.3;application/x-ppapi-example-crxfs" \
ppapi/examples/crxfs/crxfs.html
BUG=223301
Review URL: https://chromiumcodereview.appspot.com/14188019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198938 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/shared_impl/resource.h')
-rw-r--r-- | ppapi/shared_impl/resource.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ppapi/shared_impl/resource.h b/ppapi/shared_impl/resource.h index 9333a0b..50513fd 100644 --- a/ppapi/shared_impl/resource.h +++ b/ppapi/shared_impl/resource.h @@ -30,6 +30,7 @@ F(PPB_BrowserFont_Trusted_API) \ F(PPB_Buffer_API) \ F(PPB_DeviceRef_API) \ + F(PPB_Ext_CrxFileSystem_Private_API) \ F(PPB_FileChooser_API) \ F(PPB_FileIO_API) \ F(PPB_FileRef_API) \ |