| 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 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 }, | 711 }, |
| 712 "tabCapture": { | 712 "tabCapture": { |
| 713 "dependencies": ["permission:tabCapture"], | 713 "dependencies": ["permission:tabCapture"], |
| 714 "contexts": ["blessed_extension"] | 714 "contexts": ["blessed_extension"] |
| 715 }, | 715 }, |
| 716 "tabs": { | 716 "tabs": { |
| 717 "channel": "stable", | 717 "channel": "stable", |
| 718 "extension_types": ["extension", "legacy_packaged_app"], | 718 "extension_types": ["extension", "legacy_packaged_app"], |
| 719 "contexts": ["blessed_extension"] | 719 "contexts": ["blessed_extension"] |
| 720 }, | 720 }, |
| 721 "tabs.setZoom": { |
| 722 "channel": "dev" |
| 723 }, |
| 724 "tabs.getZoom": { |
| 725 "channel": "dev" |
| 726 }, |
| 727 "tabs.setZoomSettings": { |
| 728 "channel": "dev" |
| 729 }, |
| 730 "tabs.getZoomSettings": { |
| 731 "channel": "dev" |
| 732 }, |
| 721 "terminalPrivate": { | 733 "terminalPrivate": { |
| 722 "platforms": ["chromeos"], | 734 "platforms": ["chromeos"], |
| 723 "dependencies": ["permission:terminalPrivate"], | 735 "dependencies": ["permission:terminalPrivate"], |
| 724 "contexts": ["blessed_extension"] | 736 "contexts": ["blessed_extension"] |
| 725 }, | 737 }, |
| 726 "topSites": { | 738 "topSites": { |
| 727 "dependencies": ["permission:topSites"], | 739 "dependencies": ["permission:topSites"], |
| 728 "contexts": ["blessed_extension"] | 740 "contexts": ["blessed_extension"] |
| 729 }, | 741 }, |
| 730 "tts": { | 742 "tts": { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 796 "internal": true, | 808 "internal": true, |
| 797 "channel": "stable", | 809 "channel": "stable", |
| 798 "dependencies": ["permission:webview"], | 810 "dependencies": ["permission:webview"], |
| 799 "contexts": ["blessed_extension"] | 811 "contexts": ["blessed_extension"] |
| 800 }, | 812 }, |
| 801 "windows": { | 813 "windows": { |
| 802 "dependencies": ["api:tabs"], | 814 "dependencies": ["api:tabs"], |
| 803 "contexts": ["blessed_extension"] | 815 "contexts": ["blessed_extension"] |
| 804 } | 816 } |
| 805 } | 817 } |
| OLD | NEW |