| 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 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 749 "dependencies": ["permission:systemPrivate"], | 749 "dependencies": ["permission:systemPrivate"], |
| 750 "contexts": ["blessed_extension"] | 750 "contexts": ["blessed_extension"] |
| 751 }, | 751 }, |
| 752 "tabCapture": { | 752 "tabCapture": { |
| 753 "dependencies": ["permission:tabCapture"], | 753 "dependencies": ["permission:tabCapture"], |
| 754 "contexts": ["blessed_extension"] | 754 "contexts": ["blessed_extension"] |
| 755 }, | 755 }, |
| 756 "tabs": { | 756 "tabs": { |
| 757 "channel": "stable", | 757 "channel": "stable", |
| 758 "extension_types": ["extension", "legacy_packaged_app"], | 758 "extension_types": ["extension", "legacy_packaged_app"], |
| 759 "contexts": ["blessed_extension"] | 759 "contexts": ["blessed_extension", "extension_service_worker"] |
| 760 }, | 760 }, |
| 761 "terminalPrivate": { | 761 "terminalPrivate": { |
| 762 "dependencies": ["permission:terminalPrivate"], | 762 "dependencies": ["permission:terminalPrivate"], |
| 763 "contexts": ["blessed_extension"] | 763 "contexts": ["blessed_extension"] |
| 764 }, | 764 }, |
| 765 "topSites": { | 765 "topSites": { |
| 766 "dependencies": ["permission:topSites"], | 766 "dependencies": ["permission:topSites"], |
| 767 "contexts": ["blessed_extension"] | 767 "contexts": ["blessed_extension"] |
| 768 }, | 768 }, |
| 769 "tts": { | 769 "tts": { |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 841 "internal": true, | 841 "internal": true, |
| 842 "channel": "stable", | 842 "channel": "stable", |
| 843 "dependencies": ["permission:webview"], | 843 "dependencies": ["permission:webview"], |
| 844 "contexts": ["blessed_extension"] | 844 "contexts": ["blessed_extension"] |
| 845 }, | 845 }, |
| 846 "windows": { | 846 "windows": { |
| 847 "dependencies": ["api:tabs"], | 847 "dependencies": ["api:tabs"], |
| 848 "contexts": ["blessed_extension"] | 848 "contexts": ["blessed_extension"] |
| 849 } | 849 } |
| 850 } | 850 } |
| OLD | NEW |