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

Side by Side Diff: chrome/common/extensions/api/_manifest_features.json

Issue 23812010: Implement first part of supporting global extension commands. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: gclient sync 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 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 }, 73 },
74 "chrome_url_overrides": { 74 "chrome_url_overrides": {
75 "channel": "stable", 75 "channel": "stable",
76 "extension_types": ["extension", "legacy_packaged_app"] 76 "extension_types": ["extension", "legacy_packaged_app"]
77 }, 77 },
78 "commands": { 78 "commands": {
79 "channel": "stable", 79 "channel": "stable",
80 "extension_types": ["extension"], 80 "extension_types": ["extension"],
81 "min_manifest_version": 2 81 "min_manifest_version": 2
82 }, 82 },
83 "commands.global": {
84 "channel": "dev",
85 "extension_types": ["extension"],
86 "min_manifest_version": 2
87 },
83 "content_pack": { 88 "content_pack": {
84 "channel": "dev", 89 "channel": "dev",
85 "extension_types": ["extension"] 90 "extension_types": ["extension"]
86 }, 91 },
87 "content_security_policy": { 92 "content_security_policy": {
88 "channel": "stable", 93 "channel": "stable",
89 // Platform apps have a restricted content security policy that cannot be 94 // Platform apps have a restricted content security policy that cannot be
90 // overriden (except for a whitelist of exceptions, see the 95 // overriden (except for a whitelist of exceptions, see the
91 // app.content_security_policy whitelist). 96 // app.content_security_policy whitelist).
92 "extension_types": ["extension", "legacy_packaged_app"] 97 "extension_types": ["extension", "legacy_packaged_app"]
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 "extension_types": [ 390 "extension_types": [
386 "extension", "legacy_packaged_app", "hosted_app" 391 "extension", "legacy_packaged_app", "hosted_app"
387 ] 392 ]
388 }, 393 },
389 "webview": { 394 "webview": {
390 "channel": "dev", 395 "channel": "dev",
391 "extension_types": ["platform_app"], 396 "extension_types": ["platform_app"],
392 "min_manifest_version": 2 397 "min_manifest_version": 2
393 } 398 }
394 } 399 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_extensions.gypi ('k') | chrome/common/extensions/api/commands/commands_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698