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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
447 }, | 447 }, |
448 "location": { | 448 "location": { |
449 "dependencies": ["permission:location"], | 449 "dependencies": ["permission:location"], |
450 "contexts": ["blessed_extension"] | 450 "contexts": ["blessed_extension"] |
451 }, | 451 }, |
452 "logPrivate": { | 452 "logPrivate": { |
453 "dependencies": ["permission:logPrivate"], | 453 "dependencies": ["permission:logPrivate"], |
454 "extension_types": ["extension", "legacy_packaged_app"], | 454 "extension_types": ["extension", "legacy_packaged_app"], |
455 "contexts": ["blessed_extension"] | 455 "contexts": ["blessed_extension"] |
456 }, | 456 }, |
457 "webcamPrivate": { | |
458 "dependencies": ["permission:webcamPrivate"], | |
459 "extension_types": ["extension", "platform_app", "legacy_packaged_app"], | |
not at google - send to devlin
2014/04/10 20:06:00
you don't need extension_types here, that's alread
Zachary Kuznia
2014/04/10 20:57:53
Done.
| |
460 "contexts": ["blessed_extension"] | |
461 }, | |
457 "management": { | 462 "management": { |
458 "dependencies": ["permission:management"], | 463 "dependencies": ["permission:management"], |
459 "contexts": ["blessed_extension"] | 464 "contexts": ["blessed_extension"] |
460 }, | 465 }, |
461 "management.getPermissionWarningsByManifest": { | 466 "management.getPermissionWarningsByManifest": { |
462 "dependencies": [], | 467 "dependencies": [], |
463 "channel": "stable", | 468 "channel": "stable", |
464 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 469 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
465 }, | 470 }, |
466 "management.uninstallSelf": { | 471 "management.uninstallSelf": { |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
801 "internal": true, | 806 "internal": true, |
802 "channel": "stable", | 807 "channel": "stable", |
803 "dependencies": ["permission:webview"], | 808 "dependencies": ["permission:webview"], |
804 "contexts": ["blessed_extension"] | 809 "contexts": ["blessed_extension"] |
805 }, | 810 }, |
806 "windows": { | 811 "windows": { |
807 "dependencies": ["api:tabs"], | 812 "dependencies": ["api:tabs"], |
808 "contexts": ["blessed_extension"] | 813 "contexts": ["blessed_extension"] |
809 } | 814 } |
810 } | 815 } |
OLD | NEW |