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

Unified Diff: chrome/test/data/extensions/api_test/file_browser/app_file_handler_multi/manifest.json

Issue 300063006: Files.app: Let Files.app pass mutliple files to file handlers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed 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/test/data/extensions/api_test/file_browser/app_file_handler_multi/manifest.json
diff --git a/chrome/test/data/extensions/api_test/file_browser/app_file_handler/manifest.json b/chrome/test/data/extensions/api_test/file_browser/app_file_handler_multi/manifest.json
similarity index 57%
copy from chrome/test/data/extensions/api_test/file_browser/app_file_handler/manifest.json
copy to chrome/test/data/extensions/api_test/file_browser/app_file_handler_multi/manifest.json
index cbe475f8f61d8f9b88567439544520b5f11461d8..01c3d354eac7f0268719d4dfb4a04f5be61f5441 100644
--- a/chrome/test/data/extensions/api_test/file_browser/app_file_handler/manifest.json
+++ b/chrome/test/data/extensions/api_test/file_browser/app_file_handler_multi/manifest.json
@@ -3,24 +3,21 @@
"name": "ChromeOS File handler extension",
"version": "0.1",
"manifest_version": 2,
- "description": "Tests of chrome.fileSystem.* methods for handling files",
+ "description": "Tests of the file handler for multiple items",
"app": {
"background": {
- "scripts": ["background.js"]
+ "scripts": ["test.js"]
}
},
"file_handlers": {
- "xulAction": {
- "types": ["application/vnd.mozilla.xul+xml"],
- "title": "xul action handler"
- },
- "tiffAction": {
- "extensions": ["tiff"],
- "title": "tiff action handler"
+ "textAction": {
+ "extensions": ["txt"],
+ "title": "foo action handler"
}
},
"permissions": [
- "fileSystem",
+ "fileBrowserPrivate",
+ "fileBrowserHandler",
"unlimitedStorage"
]
}

Powered by Google App Engine
This is Rietveld 408576698