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 // This features file defines extension APIs implemented under src/chrome. | 5 // This features file defines extension APIs 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 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 "ledger": { | 479 "ledger": { |
480 "dependencies": ["permission:ledger"], | 480 "dependencies": ["permission:ledger"], |
481 "contexts": ["blessed_extension"] | 481 "contexts": ["blessed_extension"] |
482 }, | 482 }, |
483 "location": { | 483 "location": { |
484 "dependencies": ["permission:location"], | 484 "dependencies": ["permission:location"], |
485 "contexts": ["blessed_extension"] | 485 "contexts": ["blessed_extension"] |
486 }, | 486 }, |
487 "logPrivate": { | 487 "logPrivate": { |
488 "dependencies": ["permission:logPrivate"], | 488 "dependencies": ["permission:logPrivate"], |
489 "extension_types": ["extension", "legacy_packaged_app"], | 489 "extension_types": ["extension", "platform_app"], |
490 "contexts": ["blessed_extension"] | 490 "contexts": ["blessed_extension"] |
491 }, | 491 }, |
492 "webcamPrivate": { | 492 "webcamPrivate": { |
493 "dependencies": ["permission:webcamPrivate"], | 493 "dependencies": ["permission:webcamPrivate"], |
494 "contexts": ["blessed_extension"] | 494 "contexts": ["blessed_extension"] |
495 }, | 495 }, |
496 "management": { | 496 "management": { |
497 "dependencies": ["permission:management"], | 497 "dependencies": ["permission:management"], |
498 "contexts": ["blessed_extension"] | 498 "contexts": ["blessed_extension"] |
499 }, | 499 }, |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 "internal": true, | 752 "internal": true, |
753 "channel": "stable", | 753 "channel": "stable", |
754 "dependencies": ["permission:webview"], | 754 "dependencies": ["permission:webview"], |
755 "contexts": ["blessed_extension"] | 755 "contexts": ["blessed_extension"] |
756 }, | 756 }, |
757 "windows": { | 757 "windows": { |
758 "dependencies": ["api:tabs"], | 758 "dependencies": ["api:tabs"], |
759 "contexts": ["blessed_extension"] | 759 "contexts": ["blessed_extension"] |
760 } | 760 } |
761 } | 761 } |
OLD | NEW |