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

Unified Diff: chrome/common/extensions/docs/templates/articles/manifest/action_handlers.html

Issue 2618493002: Chrome app manifest support for action handlers. (Closed)
Patch Set: Make //components/version_info:version_info dep explicit Created 3 years, 11 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/common/extensions/docs/templates/articles/manifest/action_handlers.html
diff --git a/chrome/common/extensions/docs/templates/articles/manifest/action_handlers.html b/chrome/common/extensions/docs/templates/articles/manifest/action_handlers.html
new file mode 100644
index 0000000000000000000000000000000000000000..1883be47d5cfa1c4c41a474471487e04f1ab3490
--- /dev/null
+++ b/chrome/common/extensions/docs/templates/articles/manifest/action_handlers.html
@@ -0,0 +1,22 @@
+<h1>Manifest - Action Handlers</h1>
+
+<p>
+The <code>action_handlers</code> manifest property declares which user actions
+or intents the application supports; these can serve as alternate launch points
+for your application. This API is only available on ChromeOS.
+</p>
+
+<p>
+This list contains one or more of the <code>ActionType</code> values specified
+in the <code>ActionType</code> entry of
+<a href="../app_runtime#event-onLaunched">app.runtime.onLaunched</a>.
+</p>
+
+<h2 id="manifest">Sample manifest.json</h2>
+<pre data-filename="manifest.json">
+{
+ "name": "My note {{platform}}",
+ "action_handlers": ["new_note"],
+ ...
+}
+</pre>
« no previous file with comments | « chrome/browser/chromeos/note_taking_helper_unittest.cc ('k') | chrome/common/extensions/docs/templates/json/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698