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 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
763 "dependencies": ["permission:systemPrivate"], | 763 "dependencies": ["permission:systemPrivate"], |
764 "contexts": ["blessed_extension"] | 764 "contexts": ["blessed_extension"] |
765 }, | 765 }, |
766 "tabCapture": { | 766 "tabCapture": { |
767 "dependencies": ["permission:tabCapture"], | 767 "dependencies": ["permission:tabCapture"], |
768 "contexts": ["blessed_extension"] | 768 "contexts": ["blessed_extension"] |
769 }, | 769 }, |
770 "tabs": { | 770 "tabs": { |
771 "channel": "stable", | 771 "channel": "stable", |
772 "extension_types": ["extension", "legacy_packaged_app"], | 772 "extension_types": ["extension", "legacy_packaged_app"], |
773 "contexts": ["blessed_extension"] | 773 "contexts": ["blessed_extension", "extension_service_worker"] |
774 }, | 774 }, |
775 "terminalPrivate": { | 775 "terminalPrivate": { |
776 "dependencies": ["permission:terminalPrivate"], | 776 "dependencies": ["permission:terminalPrivate"], |
777 "contexts": ["blessed_extension"] | 777 "contexts": ["blessed_extension"] |
778 }, | 778 }, |
779 "topSites": { | 779 "topSites": { |
780 "dependencies": ["permission:topSites"], | 780 "dependencies": ["permission:topSites"], |
781 "contexts": ["blessed_extension"] | 781 "contexts": ["blessed_extension"] |
782 }, | 782 }, |
783 "tts": { | 783 "tts": { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
855 "internal": true, | 855 "internal": true, |
856 "channel": "stable", | 856 "channel": "stable", |
857 "dependencies": ["permission:webview"], | 857 "dependencies": ["permission:webview"], |
858 "contexts": ["blessed_extension"] | 858 "contexts": ["blessed_extension"] |
859 }, | 859 }, |
860 "windows": { | 860 "windows": { |
861 "dependencies": ["api:tabs"], | 861 "dependencies": ["api:tabs"], |
862 "contexts": ["blessed_extension"] | 862 "contexts": ["blessed_extension"] |
863 } | 863 } |
864 } | 864 } |
OLD | NEW |