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

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

Issue 1123093003: Add a manifest property declaring USB printers supported by an app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix leak of Value-encoded device filter in 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/extensions. 5 // This features file defines manifest keys implemented under src/extensions.
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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 "channel": "stable", 262 "channel": "stable",
263 "extension_types": [ 263 "extension_types": [
264 "extension", "platform_app", "legacy_packaged_app" 264 "extension", "platform_app", "legacy_packaged_app"
265 ], 265 ],
266 "min_manifest_version": 2 266 "min_manifest_version": 2
267 }, 267 },
268 "sockets": { 268 "sockets": {
269 "channel": "stable", 269 "channel": "stable",
270 "extension_types": ["platform_app"] 270 "extension_types": ["platform_app"]
271 }, 271 },
272 "usb_printers": {
273 "channel": "dev",
274 "extension_types": ["platform_app"]
275 },
272 "version": { 276 "version": {
273 "channel": "stable", 277 "channel": "stable",
274 "extension_types": "all" 278 "extension_types": "all"
275 }, 279 },
276 "version_name": { 280 "version_name": {
277 "channel": "stable", 281 "channel": "stable",
278 "extension_types": "all" 282 "extension_types": "all"
279 }, 283 },
280 "web_accessible_resources": [ 284 "web_accessible_resources": [
281 { 285 {
282 "channel": "stable", 286 "channel": "stable",
283 "extension_types": [ 287 "extension_types": [
284 "extension", "legacy_packaged_app", "hosted_app" 288 "extension", "legacy_packaged_app", "hosted_app"
285 ] 289 ]
286 }, 290 },
287 { 291 {
288 "channel": "stable", 292 "channel": "stable",
289 "extension_types": ["platform_app"], 293 "extension_types": ["platform_app"],
290 "location": "component" 294 "location": "component"
291 } 295 }
292 ], 296 ],
293 "webview": { 297 "webview": {
294 "channel": "stable", 298 "channel": "stable",
295 "extension_types": ["platform_app"], 299 "extension_types": ["platform_app"],
296 "min_manifest_version": 2 300 "min_manifest_version": 2
297 } 301 }
298 } 302 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698