Chromium Code Reviews| 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 "whitelist": [ | |
| 813 "8C3741E3AF0B93B6E8E0DDD499BB0B74839EA578", | |
| 814 "E703483CEF33DEC18B4B6DD84B5C776FB9182BDB", | |
| 815 "1A26E32DE447A17CBE5E9750CDBA78F58539B39C", | |
| 816 "59048028102D7B4C681DBC7BC6CD980C3DC66DA3" | |
| 817 ] | |
| 818 }, | |
|
not at google - send to devlin
2014/08/27 20:01:04
This needs to be:
"webViewExperimentalInternal":
Fady Samuel
2014/08/27 20:13:42
Done. CQ'ing. Thanks! :-)
| |
| 807 "webViewInternal": [{ | 819 "webViewInternal": [{ |
| 808 "internal": true, | 820 "internal": true, |
| 809 "dependencies": ["permission:webview"], | 821 "dependencies": ["permission:webview"], |
| 810 "contexts": ["blessed_extension"] | 822 "contexts": ["blessed_extension"] |
| 811 }, { | 823 }, { |
| 812 // Component extensions can use the webViewInternal API from iframes. | 824 // Component extensions can use the webViewInternal API from iframes. |
| 813 "location": "component", | 825 "location": "component", |
| 814 "internal": true, | 826 "internal": true, |
| 815 "dependencies": ["permission:webview"], | 827 "dependencies": ["permission:webview"], |
| 816 "contexts": ["unblessed_extension"] | 828 "contexts": ["unblessed_extension"] |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 828 "internal": true, | 840 "internal": true, |
| 829 "channel": "stable", | 841 "channel": "stable", |
| 830 "dependencies": ["permission:webview"], | 842 "dependencies": ["permission:webview"], |
| 831 "contexts": ["blessed_extension"] | 843 "contexts": ["blessed_extension"] |
| 832 }, | 844 }, |
| 833 "windows": { | 845 "windows": { |
| 834 "dependencies": ["api:tabs"], | 846 "dependencies": ["api:tabs"], |
| 835 "contexts": ["blessed_extension"] | 847 "contexts": ["blessed_extension"] |
| 836 } | 848 } |
| 837 } | 849 } |
| OLD | NEW |