Chromium Code Reviews| Index: chrome/test/data/extensions/platform_apps/web_view/filesystem/main/manifest.json |
| diff --git a/chrome/test/data/extensions/platform_apps/web_view/filesystem/main/manifest.json b/chrome/test/data/extensions/platform_apps/web_view/filesystem/main/manifest.json |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4a1256de5083e20feda9ef682a65d0d416742636 |
| --- /dev/null |
| +++ b/chrome/test/data/extensions/platform_apps/web_view/filesystem/main/manifest.json |
| @@ -0,0 +1,22 @@ |
| +{ |
| + "name": "Platform App Test: <webview> filesystem", |
| + "description": "Loads a guest which requests filesystem", |
| + "version": "1", |
| + "permissions": [ |
| + "webview", |
| + "unlimitedStorage" |
| + ], |
| + "webview": { |
| + "partitions": [ |
| + { |
| + "name": "a", |
| + "accessible_resources": ["*"] |
| + } |
| + ] |
| + }, |
| + "app": { |
| + "background": { |
| + "scripts": ["test.js"] |
| + } |
| + } |
| +} |