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

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

Issue 9845003: Pass command line arguments onto platform apps which provide the right intent. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Include files Created 8 years, 9 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/document_editor/manifest.json
diff --git a/chrome/test/data/extensions/platform_apps/document_editor/manifest.json b/chrome/test/data/extensions/platform_apps/document_editor/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..5761bc6789c1d6782ca01acd5c533a2974bd70c3
--- /dev/null
+++ b/chrome/test/data/extensions/platform_apps/document_editor/manifest.json
@@ -0,0 +1,22 @@
+{
+ "name": "Platform App Test: document editor",
+ "platform_app": true,
+ "version": "1",
+ "manifest_version": 2,
+ "intents": {
+ "http://webintents.org/view": {
+ "type": [
+ "text/*"
+ ],
+ "title": "Test editor"
+ }
+ },
+ "app": {
+ "launch": {
+ "local_path": "main.html",
+ "container": "shell",
+ "width": 250,
+ "height": 250
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698