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

Unified Diff: chrome/common/extensions/api/_manifest_features.json

Issue 44553002: Enabling Commands API for Apps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test Created 7 years, 2 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/api/_manifest_features.json
diff --git a/chrome/common/extensions/api/_manifest_features.json b/chrome/common/extensions/api/_manifest_features.json
index 3522585aabb09695501863d5e03a37683f42d55d..87c9869cac9904edc8d6f7e8bd173960c080a956 100644
--- a/chrome/common/extensions/api/_manifest_features.json
+++ b/chrome/common/extensions/api/_manifest_features.json
@@ -79,16 +79,24 @@
"channel": "stable",
"extension_types": ["extension", "legacy_packaged_app"]
},
- "commands": {
- "channel": "stable",
- "extension_types": ["extension"],
- "min_manifest_version": 2
- },
- "commands.global": {
- "channel": "dev",
- "extension_types": ["extension"],
- "min_manifest_version": 2
- },
+ "commands": [
+ {
+ "channel": "dev",
+ "extension_types": ["platform_app"],
+ "min_manifest_version": 2
+ }, {
+ "channel": "stable",
+ "extension_types": ["extension"],
+ "min_manifest_version": 2
+ }
+ ],
+ "commands.global": [
+ {
+ "channel": "dev",
+ "extension_types": ["extension", "platform_app"],
+ "min_manifest_version": 2
+ }
+ ],
"content_pack": {
"channel": "dev",
"extension_types": ["extension"]

Powered by Google App Engine
This is Rietveld 408576698