Index: chrome/test/data/extensions/platform_apps/url_handlers/handler_with_webview/manifest.json |
diff --git a/chrome/test/data/extensions/platform_apps/url_handlers/handler_with_webview/manifest.json b/chrome/test/data/extensions/platform_apps/url_handlers/handler_with_webview/manifest.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fadfa330d0ceb2ae40a37fe3a9c5532c5a0ee7d9 |
--- /dev/null |
+++ b/chrome/test/data/extensions/platform_apps/url_handlers/handler_with_webview/manifest.json |
@@ -0,0 +1,22 @@ |
+{ |
+ "name": "url_handlers: handler with webview", |
+ "version": "1", |
+ "app": { |
+ "background": { |
+ "scripts": ["test.js"] |
+ } |
+ }, |
+ |
+ "permissions": [ |
+ "webview" |
+ ], |
+ |
+ "url_handlers": { |
+ "my_doc_url": { |
+ "title": "Open my doc", |
+ "matches": [ |
+ "http://localhost:*/extensions/platform_apps/url_handlers/*" |
+ ] |
+ } |
+ } |
+} |