OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
737 "dependencies": ["permission:systemPrivate"], | 737 "dependencies": ["permission:systemPrivate"], |
738 "contexts": ["blessed_extension"] | 738 "contexts": ["blessed_extension"] |
739 }, | 739 }, |
740 "tabCapture": { | 740 "tabCapture": { |
741 "dependencies": ["permission:tabCapture"], | 741 "dependencies": ["permission:tabCapture"], |
742 "contexts": ["blessed_extension"] | 742 "contexts": ["blessed_extension"] |
743 }, | 743 }, |
744 "tabs": { | 744 "tabs": { |
745 "channel": "stable", | 745 "channel": "stable", |
746 "extension_types": ["extension", "legacy_packaged_app"], | 746 "extension_types": ["extension", "legacy_packaged_app"], |
747 "contexts": ["blessed_extension"] | 747 "contexts": ["blessed_extension", "extension_service_worker"] |
748 }, | 748 }, |
749 "terminalPrivate": { | 749 "terminalPrivate": { |
750 "dependencies": ["permission:terminalPrivate"], | 750 "dependencies": ["permission:terminalPrivate"], |
751 "contexts": ["blessed_extension"] | 751 "contexts": ["blessed_extension"] |
752 }, | 752 }, |
753 "topSites": { | 753 "topSites": { |
754 "dependencies": ["permission:topSites"], | 754 "dependencies": ["permission:topSites"], |
755 "contexts": ["blessed_extension"] | 755 "contexts": ["blessed_extension"] |
756 }, | 756 }, |
757 "tts": { | 757 "tts": { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
829 "internal": true, | 829 "internal": true, |
830 "channel": "stable", | 830 "channel": "stable", |
831 "dependencies": ["permission:webview"], | 831 "dependencies": ["permission:webview"], |
832 "contexts": ["blessed_extension"] | 832 "contexts": ["blessed_extension"] |
833 }, | 833 }, |
834 "windows": { | 834 "windows": { |
835 "dependencies": ["api:tabs"], | 835 "dependencies": ["api:tabs"], |
836 "contexts": ["blessed_extension"] | 836 "contexts": ["blessed_extension"] |
837 } | 837 } |
838 } | 838 } |
OLD | NEW |