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

Unified Diff: chrome/test/data/extensions/platform_apps/url_handlers/handler/manifest.json

Issue 23847004: "Redirecting URLs to Packaged Apps" implementation: revised (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Limit interception to http:// and https:// Created 7 years, 3 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/platform_apps/url_handlers/handler/manifest.json
diff --git a/chrome/test/data/extensions/platform_apps/url_handlers/handler/manifest.json b/chrome/test/data/extensions/platform_apps/url_handlers/handler/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..0498ddddbb18b10029105a5d0f1cc7d68866e2ad
--- /dev/null
+++ b/chrome/test/data/extensions/platform_apps/url_handlers/handler/manifest.json
@@ -0,0 +1,19 @@
+{
+ "name": "url_handlers: handler",
+ "version": "1",
+ "app": {
+ "background": {
+ "scripts": ["test.js"]
+ }
+ },
+
+ "url_handlers": {
+ "my_doc_url": {
+ "title": "Open my doc",
+ "matches": [
+ "http://localhost:*/extensions/platform_apps/url_handlers/*/target.html",
+ "http://127.0.0.1:*/extensions/platform_apps/url_handlers/*/target.html"
+ ]
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698