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 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
797 // Any webpage can use the webstore API. | 797 // Any webpage can use the webstore API. |
798 "matches": ["<all_urls>"] | 798 "matches": ["<all_urls>"] |
799 }, | 799 }, |
800 "webstorePrivate": { | 800 "webstorePrivate": { |
801 "dependencies": ["permission:webstorePrivate"], | 801 "dependencies": ["permission:webstorePrivate"], |
802 // NOTE: even though this is only used by the webstore hosted app, which | 802 // NOTE: even though this is only used by the webstore hosted app, which |
803 // normally would mean blessed_web_page, component hosted apps are actually | 803 // normally would mean blessed_web_page, component hosted apps are actually |
804 // given the blessed_extension denomination. Confusing. | 804 // given the blessed_extension denomination. Confusing. |
805 "contexts": ["blessed_extension"] | 805 "contexts": ["blessed_extension"] |
806 }, | 806 }, |
| 807 "webViewExperimentalInternal": [{ |
| 808 "internal": true, |
| 809 "channel": "dev", |
| 810 "contexts": ["blessed_extension"], |
| 811 "dependencies": ["permission:webview"] |
| 812 }, |
| 813 { |
| 814 "internal": true, |
| 815 "channel": "stable", |
| 816 "contexts": ["blessed_extension"], |
| 817 "dependencies": ["permission:webview"], |
| 818 "whitelist": [ |
| 819 "8C3741E3AF0B93B6E8E0DDD499BB0B74839EA578", |
| 820 "E703483CEF33DEC18B4B6DD84B5C776FB9182BDB", |
| 821 "1A26E32DE447A17CBE5E9750CDBA78F58539B39C", |
| 822 "59048028102D7B4C681DBC7BC6CD980C3DC66DA3" |
| 823 ] |
| 824 }], |
807 "webViewInternal": [{ | 825 "webViewInternal": [{ |
808 "internal": true, | 826 "internal": true, |
809 "dependencies": ["permission:webview"], | 827 "dependencies": ["permission:webview"], |
810 "contexts": ["blessed_extension"] | 828 "contexts": ["blessed_extension"] |
811 }, { | 829 }, { |
812 // Component extensions can use the webViewInternal API from iframes. | 830 // Component extensions can use the webViewInternal API from iframes. |
813 "location": "component", | 831 "location": "component", |
814 "internal": true, | 832 "internal": true, |
815 "dependencies": ["permission:webview"], | 833 "dependencies": ["permission:webview"], |
816 "contexts": ["unblessed_extension"] | 834 "contexts": ["unblessed_extension"] |
(...skipping 11 matching lines...) Expand all Loading... |
828 "internal": true, | 846 "internal": true, |
829 "channel": "stable", | 847 "channel": "stable", |
830 "dependencies": ["permission:webview"], | 848 "dependencies": ["permission:webview"], |
831 "contexts": ["blessed_extension"] | 849 "contexts": ["blessed_extension"] |
832 }, | 850 }, |
833 "windows": { | 851 "windows": { |
834 "dependencies": ["api:tabs"], | 852 "dependencies": ["api:tabs"], |
835 "contexts": ["blessed_extension"] | 853 "contexts": ["blessed_extension"] |
836 } | 854 } |
837 } | 855 } |
OLD | NEW |