| 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"
|
| ]
|
| }
|
|
|