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 // See c/c/e/features/* to understand this file, in particular feature.h, | 5 // See c/c/e/features/* to understand this file, in particular feature.h, |
6 // simple_feature.h, and base_feature_provider.h. | 6 // simple_feature.h, and base_feature_provider.h. |
7 | 7 |
8 { | 8 { |
9 "activityLogPrivate": { | 9 "activityLogPrivate": { |
10 "dependencies": ["permission:activityLogPrivate"], | 10 "dependencies": ["permission:activityLogPrivate"], |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 "contexts": ["blessed_extension"] | 121 "contexts": ["blessed_extension"] |
122 }], | 122 }], |
123 "browsingData": { | 123 "browsingData": { |
124 "dependencies": ["permission:browsingData"], | 124 "dependencies": ["permission:browsingData"], |
125 "contexts": ["blessed_extension"] | 125 "contexts": ["blessed_extension"] |
126 }, | 126 }, |
127 "cast.channel": { | 127 "cast.channel": { |
128 "dependencies": ["permission:cast"], | 128 "dependencies": ["permission:cast"], |
129 "contexts": ["blessed_extension"] | 129 "contexts": ["blessed_extension"] |
130 }, | 130 }, |
| 131 "cast.streaming.rtpStream": { |
| 132 "dependencies": ["permission:cast.streaming"], |
| 133 "contexts": ["blessed_extension"] |
| 134 }, |
131 "cast.streaming.session": { | 135 "cast.streaming.session": { |
132 "dependencies": ["permission:cast.streaming"], | 136 "dependencies": ["permission:cast.streaming"], |
133 "contexts": ["blessed_extension"] | 137 "contexts": ["blessed_extension"] |
134 }, | 138 }, |
| 139 "cast.streaming.udpTransport": { |
| 140 "dependencies": ["permission:cast.streaming"], |
| 141 "contexts": ["blessed_extension"] |
| 142 }, |
135 "chromeosInfoPrivate": { | 143 "chromeosInfoPrivate": { |
136 "platforms": ["chromeos"], | 144 "platforms": ["chromeos"], |
137 "dependencies": ["permission:chromeosInfoPrivate"], | 145 "dependencies": ["permission:chromeosInfoPrivate"], |
138 "contexts": ["blessed_extension"] | 146 "contexts": ["blessed_extension"] |
139 }, | 147 }, |
140 "cloudPrintPrivate": { | 148 "cloudPrintPrivate": { |
141 "dependencies": ["permission:cloudPrintPrivate"], | 149 "dependencies": ["permission:cloudPrintPrivate"], |
142 "contexts": ["blessed_extension"] | 150 "contexts": ["blessed_extension"] |
143 }, | 151 }, |
144 "commandLinePrivate": { | 152 "commandLinePrivate": { |
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 "channel": "stable", | 718 "channel": "stable", |
711 "extension_types": ["hosted_app"], | 719 "extension_types": ["hosted_app"], |
712 "contexts": ["blessed_extension", "web_page"], | 720 "contexts": ["blessed_extension", "web_page"], |
713 // Any webpage can use the webstore API. | 721 // Any webpage can use the webstore API. |
714 "matches": ["http://*/*", "https://*/*"] | 722 "matches": ["http://*/*", "https://*/*"] |
715 }, | 723 }, |
716 "webstorePrivate": { | 724 "webstorePrivate": { |
717 "dependencies": ["permission:webstorePrivate"], | 725 "dependencies": ["permission:webstorePrivate"], |
718 "contexts": ["blessed_extension"] | 726 "contexts": ["blessed_extension"] |
719 }, | 727 }, |
720 "webrtc.castSendTransport": { | |
721 "dependencies": ["permission:webrtc"], | |
722 "contexts": ["blessed_extension"] | |
723 }, | |
724 "webrtc.castUdpTransport": { | |
725 "dependencies": ["permission:webrtc"], | |
726 "contexts": ["blessed_extension"] | |
727 }, | |
728 "webview": { | 728 "webview": { |
729 "internal": true, | 729 "internal": true, |
730 "dependencies": ["permission:webview"], | 730 "dependencies": ["permission:webview"], |
731 "contexts": ["blessed_extension", "unblessed_extension"] | 731 "contexts": ["blessed_extension", "unblessed_extension"] |
732 }, | 732 }, |
733 "webViewRequest": { | 733 "webViewRequest": { |
734 "dependencies": ["permission:webview"], | 734 "dependencies": ["permission:webview"], |
735 "contexts": ["blessed_extension", "unblessed_extension"] | 735 "contexts": ["blessed_extension", "unblessed_extension"] |
736 }, | 736 }, |
737 "webviewTag": { | 737 "webviewTag": { |
738 "internal": true, | 738 "internal": true, |
739 "channel": "stable", | 739 "channel": "stable", |
740 "dependencies": ["permission:webview"], | 740 "dependencies": ["permission:webview"], |
741 "contexts": ["blessed_extension"] | 741 "contexts": ["blessed_extension"] |
742 }, | 742 }, |
743 "windows": { | 743 "windows": { |
744 "dependencies": ["api:tabs"], | 744 "dependencies": ["api:tabs"], |
745 "contexts": ["blessed_extension"] | 745 "contexts": ["blessed_extension"] |
746 } | 746 } |
747 } | 747 } |
OLD | NEW |