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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 "contexts": ["blessed_extension"] | 150 "contexts": ["blessed_extension"] |
151 }, | 151 }, |
152 "cast.channel": { | 152 "cast.channel": { |
153 "dependencies": ["permission:cast"], | 153 "dependencies": ["permission:cast"], |
154 "contexts": ["blessed_extension"] | 154 "contexts": ["blessed_extension"] |
155 }, | 155 }, |
156 "cast.streaming.rtpStream": { | 156 "cast.streaming.rtpStream": { |
157 "dependencies": ["permission:cast.streaming"], | 157 "dependencies": ["permission:cast.streaming"], |
158 "contexts": ["blessed_extension"] | 158 "contexts": ["blessed_extension"] |
159 }, | 159 }, |
| 160 "cast.streaming.receiverSession": { |
| 161 "dependencies": ["permission:cast.streaming"], |
| 162 "contexts": ["blessed_extension"] |
| 163 }, |
160 "cast.streaming.session": { | 164 "cast.streaming.session": { |
161 "dependencies": ["permission:cast.streaming"], | 165 "dependencies": ["permission:cast.streaming"], |
162 "contexts": ["blessed_extension"] | 166 "contexts": ["blessed_extension"] |
163 }, | 167 }, |
164 "cast.streaming.udpTransport": { | 168 "cast.streaming.udpTransport": { |
165 "dependencies": ["permission:cast.streaming"], | 169 "dependencies": ["permission:cast.streaming"], |
166 "contexts": ["blessed_extension"] | 170 "contexts": ["blessed_extension"] |
167 }, | 171 }, |
168 "chromeosInfoPrivate": { | 172 "chromeosInfoPrivate": { |
169 "dependencies": ["permission:chromeosInfoPrivate"], | 173 "dependencies": ["permission:chromeosInfoPrivate"], |
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 "internal": true, | 710 "internal": true, |
707 "channel": "stable", | 711 "channel": "stable", |
708 "dependencies": ["permission:webview"], | 712 "dependencies": ["permission:webview"], |
709 "contexts": ["blessed_extension"] | 713 "contexts": ["blessed_extension"] |
710 }, | 714 }, |
711 "windows": { | 715 "windows": { |
712 "dependencies": ["api:tabs"], | 716 "dependencies": ["api:tabs"], |
713 "contexts": ["blessed_extension"] | 717 "contexts": ["blessed_extension"] |
714 } | 718 } |
715 } | 719 } |
OLD | NEW |