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

Unified Diff: chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/manifest.json

Issue 360673004: Demonstrate the functionality of the File System Provider API for archives. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolve a bug with the entry.name used as mounted fileSystemId as entry.name can be duplicated. Now… Created 6 years, 6 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: chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/manifest.json
diff --git a/chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/manifest.json b/chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..e9b58fa9595e0b81dadf5d98b2d1dca71f25cdc6
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/manifest.json
@@ -0,0 +1,25 @@
+{
+ "name": "Fake Archive Handler",
+ "version": "0.1",
+ "manifest_version": 2,
+ "description": "Demonstrate File System Provider API usage for archives",
mtomasz 2014/07/01 01:31:29 nit: the period (.) is still missing in the descri
cmihail 2014/07/01 01:40:03 Done.
+ "permissions": [
+ "fileSystemProvider",
+ {"fileSystem": ["retainEntries"]},
+ "storage"
+ ],
+ "file_handlers": {
+ "fake": {
+ "types": ["application/fake"],
+ "extensions": ["fake"],
+ "title": "Open fake archive"
+ }
+ },
+ "app": {
+ "background": {
+ "scripts": [
+ "background.js"
+ ]
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698