OLD | NEW |
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 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
10 | 10 |
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
452 }, | 452 }, |
453 "location": { | 453 "location": { |
454 "dependencies": ["permission:location"], | 454 "dependencies": ["permission:location"], |
455 "contexts": ["blessed_extension"] | 455 "contexts": ["blessed_extension"] |
456 }, | 456 }, |
457 "logPrivate": { | 457 "logPrivate": { |
458 "dependencies": ["permission:logPrivate"], | 458 "dependencies": ["permission:logPrivate"], |
459 "extension_types": ["extension", "legacy_packaged_app"], | 459 "extension_types": ["extension", "legacy_packaged_app"], |
460 "contexts": ["blessed_extension"] | 460 "contexts": ["blessed_extension"] |
461 }, | 461 }, |
| 462 "webcamPrivate": { |
| 463 "dependencies": ["permission:webcamPrivate"], |
| 464 "contexts": ["blessed_extension"] |
| 465 }, |
462 "management": { | 466 "management": { |
463 "dependencies": ["permission:management"], | 467 "dependencies": ["permission:management"], |
464 "contexts": ["blessed_extension"] | 468 "contexts": ["blessed_extension"] |
465 }, | 469 }, |
466 "management.getPermissionWarningsByManifest": { | 470 "management.getPermissionWarningsByManifest": { |
467 "dependencies": [], | 471 "dependencies": [], |
468 "channel": "stable", | 472 "channel": "stable", |
469 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 473 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
470 }, | 474 }, |
471 "management.uninstallSelf": { | 475 "management.uninstallSelf": { |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
806 "internal": true, | 810 "internal": true, |
807 "channel": "stable", | 811 "channel": "stable", |
808 "dependencies": ["permission:webview"], | 812 "dependencies": ["permission:webview"], |
809 "contexts": ["blessed_extension"] | 813 "contexts": ["blessed_extension"] |
810 }, | 814 }, |
811 "windows": { | 815 "windows": { |
812 "dependencies": ["api:tabs"], | 816 "dependencies": ["api:tabs"], |
813 "contexts": ["blessed_extension"] | 817 "contexts": ["blessed_extension"] |
814 } | 818 } |
815 } | 819 } |
OLD | NEW |