| 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 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 "channel": "stable", | 702 "channel": "stable", |
| 703 "contexts": ["webui"], | 703 "contexts": ["webui"], |
| 704 "matches": [ | 704 "matches": [ |
| 705 "chrome://print/*" | 705 "chrome://print/*" |
| 706 ] | 706 ] |
| 707 }], | 707 }], |
| 708 "rtcPrivate": { | 708 "rtcPrivate": { |
| 709 "dependencies": ["permission:rtcPrivate"], | 709 "dependencies": ["permission:rtcPrivate"], |
| 710 "contexts": ["blessed_extension"] | 710 "contexts": ["blessed_extension"] |
| 711 }, | 711 }, |
| 712 "searchEnginesPrivate": [{ | |
| 713 "dependencies": ["permission:searchEnginesPrivate"], | |
| 714 "contexts": ["blessed_extension"] | |
| 715 }, { | |
| 716 "channel": "trunk", | |
| 717 "contexts": ["webui"], | |
| 718 "matches": [ | |
| 719 "chrome://md-settings/*", | |
| 720 "chrome://settings/*", | |
| 721 "chrome://settings-frame/*" | |
| 722 ] | |
| 723 }], | |
| 724 "sessions": { | 712 "sessions": { |
| 725 "dependencies": ["permission:sessions"], | 713 "dependencies": ["permission:sessions"], |
| 726 "contexts": ["blessed_extension"] | 714 "contexts": ["blessed_extension"] |
| 727 }, | 715 }, |
| 728 "settingsPrivate": [{ | 716 "settingsPrivate": [{ |
| 729 "dependencies": ["permission:settingsPrivate"], | 717 "dependencies": ["permission:settingsPrivate"], |
| 730 "contexts": ["blessed_extension"] | 718 "contexts": ["blessed_extension"] |
| 731 }, { | 719 }, { |
| 732 "channel": "trunk", | 720 "channel": "trunk", |
| 733 "contexts": ["webui"], | 721 "contexts": ["webui"], |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 849 "internal": true, | 837 "internal": true, |
| 850 "channel": "stable", | 838 "channel": "stable", |
| 851 "dependencies": ["permission:webview"], | 839 "dependencies": ["permission:webview"], |
| 852 "contexts": ["blessed_extension"] | 840 "contexts": ["blessed_extension"] |
| 853 }, | 841 }, |
| 854 "windows": { | 842 "windows": { |
| 855 "dependencies": ["api:tabs"], | 843 "dependencies": ["api:tabs"], |
| 856 "contexts": ["blessed_extension"] | 844 "contexts": ["blessed_extension"] |
| 857 } | 845 } |
| 858 } | 846 } |
| OLD | NEW |