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

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

Issue 1077823005: Declare providing extension capabilities in the manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. Created 5 years, 7 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
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/extensions/api/file_manager_private.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // This features file defines manifest keys implemented under src/chrome. 5 // This features file defines manifest keys implemented under src/chrome.
6 // See extensions/common/features/* to understand this file, in particular 6 // See extensions/common/features/* to understand this file, in particular
7 // feature.h, simple_feature.h, and base_feature_provider.h. 7 // feature.h, simple_feature.h, and base_feature_provider.h.
8 8
9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: 9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash:
10 // 10 //
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 { 145 {
146 "channel": "stable", 146 "channel": "stable",
147 "extension_types": ["extension", "legacy_packaged_app"] 147 "extension_types": ["extension", "legacy_packaged_app"]
148 }, 148 },
149 { 149 {
150 "channel": "stable", 150 "channel": "stable",
151 "extension_types": ["platform_app"], 151 "extension_types": ["platform_app"],
152 "location": "component" 152 "location": "component"
153 } 153 }
154 ], 154 ],
155 "file_system_provider": [
156 {
157 "channel": "dev",
158 "extension_types": ["extension", "platform_app"]
159 }
160 ],
155 "homepage_url": { 161 "homepage_url": {
156 "channel": "stable", 162 "channel": "stable",
157 "extension_types": ["extension", "legacy_packaged_app"] 163 "extension_types": ["extension", "legacy_packaged_app"]
158 }, 164 },
159 "import": { 165 "import": {
160 "channel": "stable", 166 "channel": "stable",
161 "extension_types": "all" 167 "extension_types": "all"
162 }, 168 },
163 "input_components": { 169 "input_components": {
164 "channel": "stable", 170 "channel": "stable",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 }, 262 },
257 "update_url": { 263 "update_url": {
258 "channel": "stable", 264 "channel": "stable",
259 "extension_types": "all" 265 "extension_types": "all"
260 }, 266 },
261 "url_handlers": { 267 "url_handlers": {
262 "channel": "stable", 268 "channel": "stable",
263 "extension_types": ["platform_app"] 269 "extension_types": ["platform_app"]
264 } 270 }
265 } 271 }
OLDNEW
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/extensions/api/file_manager_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698