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 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
750 "contexts": ["blessed_extension"] | 750 "contexts": ["blessed_extension"] |
751 }, | 751 }, |
752 "systemPrivate": { | 752 "systemPrivate": { |
753 "dependencies": ["permission:systemPrivate"], | 753 "dependencies": ["permission:systemPrivate"], |
754 "contexts": ["blessed_extension"] | 754 "contexts": ["blessed_extension"] |
755 }, | 755 }, |
756 "tabCapture": { | 756 "tabCapture": { |
757 "dependencies": ["permission:tabCapture"], | 757 "dependencies": ["permission:tabCapture"], |
758 "contexts": ["blessed_extension"] | 758 "contexts": ["blessed_extension"] |
759 }, | 759 }, |
| 760 "tabCapturePrivate": { |
| 761 "dependencies": ["permission:tabCapture"], |
| 762 "contexts": ["blessed_extension"] |
| 763 }, |
760 "tabs": { | 764 "tabs": { |
761 "channel": "stable", | 765 "channel": "stable", |
762 "extension_types": ["extension", "legacy_packaged_app"], | 766 "extension_types": ["extension", "legacy_packaged_app"], |
763 "contexts": ["blessed_extension"] | 767 "contexts": ["blessed_extension"] |
764 }, | 768 }, |
765 "terminalPrivate": { | 769 "terminalPrivate": { |
766 "dependencies": ["permission:terminalPrivate"], | 770 "dependencies": ["permission:terminalPrivate"], |
767 "contexts": ["blessed_extension"] | 771 "contexts": ["blessed_extension"] |
768 }, | 772 }, |
769 "topSites": { | 773 "topSites": { |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 "internal": true, | 849 "internal": true, |
846 "channel": "stable", | 850 "channel": "stable", |
847 "dependencies": ["permission:webview"], | 851 "dependencies": ["permission:webview"], |
848 "contexts": ["blessed_extension"] | 852 "contexts": ["blessed_extension"] |
849 }, | 853 }, |
850 "windows": { | 854 "windows": { |
851 "dependencies": ["api:tabs"], | 855 "dependencies": ["api:tabs"], |
852 "contexts": ["blessed_extension"] | 856 "contexts": ["blessed_extension"] |
853 } | 857 } |
854 } | 858 } |
OLD | NEW |