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

Side by Side 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, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // See c/c/e/features/* to understand this file, in particular feature.h, 5 // See c/c/e/features/* to understand this file, in particular feature.h,
6 // simple_feature.h, and base_feature_provider.h. 6 // simple_feature.h, and base_feature_provider.h.
7 7
8 { 8 {
9 "app": { 9 "app": {
10 "channel": "stable", 10 "channel": "stable",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 "extension_types": ["extension"] 72 "extension_types": ["extension"]
73 }, 73 },
74 "chrome_settings_overrides": { 74 "chrome_settings_overrides": {
75 "channel": "dev", 75 "channel": "dev",
76 "extension_types": ["extension"] 76 "extension_types": ["extension"]
77 }, 77 },
78 "chrome_url_overrides": { 78 "chrome_url_overrides": {
79 "channel": "stable", 79 "channel": "stable",
80 "extension_types": ["extension", "legacy_packaged_app"] 80 "extension_types": ["extension", "legacy_packaged_app"]
81 }, 81 },
82 "commands": { 82 "commands": [
83 "channel": "stable", 83 {
84 "extension_types": ["extension"], 84 "channel": "dev",
85 "min_manifest_version": 2 85 "extension_types": ["platform_app"],
86 }, 86 "min_manifest_version": 2
87 "commands.global": { 87 }, {
88 "channel": "dev", 88 "channel": "stable",
89 "extension_types": ["extension"], 89 "extension_types": ["extension"],
90 "min_manifest_version": 2 90 "min_manifest_version": 2
91 }, 91 }
92 ],
93 "commands.global": [
94 {
95 "channel": "dev",
96 "extension_types": ["extension", "platform_app"],
97 "min_manifest_version": 2
98 }
99 ],
92 "content_pack": { 100 "content_pack": {
93 "channel": "dev", 101 "channel": "dev",
94 "extension_types": ["extension"] 102 "extension_types": ["extension"]
95 }, 103 },
96 "content_security_policy": { 104 "content_security_policy": {
97 "channel": "stable", 105 "channel": "stable",
98 // Platform apps have a restricted content security policy that cannot be 106 // Platform apps have a restricted content security policy that cannot be
99 // overriden (except for a whitelist of exceptions, see the 107 // overriden (except for a whitelist of exceptions, see the
100 // app.content_security_policy whitelist). 108 // app.content_security_policy whitelist).
101 "extension_types": ["extension", "legacy_packaged_app"] 109 "extension_types": ["extension", "legacy_packaged_app"]
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 "extension_types": [ 402 "extension_types": [
395 "extension", "legacy_packaged_app", "hosted_app" 403 "extension", "legacy_packaged_app", "hosted_app"
396 ] 404 ]
397 }, 405 },
398 "webview": { 406 "webview": {
399 "channel": "dev", 407 "channel": "dev",
400 "extension_types": ["platform_app"], 408 "extension_types": ["platform_app"],
401 "min_manifest_version": 2 409 "min_manifest_version": 2
402 } 410 }
403 } 411 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698