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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 }, | 151 }, |
152 "diagnostics": { | 152 "diagnostics": { |
153 "dependencies": ["permission:diagnostics"], | 153 "dependencies": ["permission:diagnostics"], |
154 "extension_types": ["platform_app"], | 154 "extension_types": ["platform_app"], |
155 "contexts": ["blessed_extension"] | 155 "contexts": ["blessed_extension"] |
156 }, | 156 }, |
157 "dial": { | 157 "dial": { |
158 "dependencies": ["permission:dial"], | 158 "dependencies": ["permission:dial"], |
159 "contexts": ["blessed_extension"] | 159 "contexts": ["blessed_extension"] |
160 }, | 160 }, |
| 161 "dns": { |
| 162 "dependencies": ["permission:dns"], |
| 163 "contexts": ["blessed_extension"] |
| 164 }, |
161 "downloads": { | 165 "downloads": { |
162 "dependencies": ["permission:downloads"], | 166 "dependencies": ["permission:downloads"], |
163 "contexts": ["blessed_extension"] | 167 "contexts": ["blessed_extension"] |
164 }, | 168 }, |
165 "downloadsInternal": { | 169 "downloadsInternal": { |
166 "internal": true, | 170 "internal": true, |
167 "channel": "stable", | 171 "channel": "stable", |
168 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 172 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
169 }, | 173 }, |
170 "echoPrivate": { | 174 "echoPrivate": { |
(...skipping 15 matching lines...) Expand all Loading... |
186 "matches": ["<all_urls>"] | 190 "matches": ["<all_urls>"] |
187 }, | 191 }, |
188 "experimental.accessibility": { | 192 "experimental.accessibility": { |
189 "dependencies": ["permission:experimental"], | 193 "dependencies": ["permission:experimental"], |
190 "contexts": ["blessed_extension"] | 194 "contexts": ["blessed_extension"] |
191 }, | 195 }, |
192 "experimental.discovery": { | 196 "experimental.discovery": { |
193 "dependencies": ["permission:experimental"], | 197 "dependencies": ["permission:experimental"], |
194 "contexts": ["blessed_extension"] | 198 "contexts": ["blessed_extension"] |
195 }, | 199 }, |
196 "experimental.dns": { | |
197 "dependencies": ["permission:experimental"], | |
198 "contexts": ["blessed_extension"] | |
199 }, | |
200 "experimental.history": { | 200 "experimental.history": { |
201 "dependencies": ["permission:history", "permission:experimental"], | 201 "dependencies": ["permission:history", "permission:experimental"], |
202 "contexts": ["blessed_extension"] | 202 "contexts": ["blessed_extension"] |
203 }, | 203 }, |
204 "experimental.identity": { | 204 "experimental.identity": { |
205 "dependencies": ["permission:experimental"], | 205 "dependencies": ["permission:experimental"], |
206 "contexts": ["blessed_extension"] | 206 "contexts": ["blessed_extension"] |
207 }, | 207 }, |
208 "experimental.idltest": { | 208 "experimental.idltest": { |
209 "dependencies": ["permission:experimental"], | 209 "dependencies": ["permission:experimental"], |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
596 "webview": { | 596 "webview": { |
597 "internal": true, | 597 "internal": true, |
598 "dependencies": ["permission:webview"], | 598 "dependencies": ["permission:webview"], |
599 "contexts": ["blessed_extension"] | 599 "contexts": ["blessed_extension"] |
600 }, | 600 }, |
601 "windows": { | 601 "windows": { |
602 "dependencies": ["api:tabs"], | 602 "dependencies": ["api:tabs"], |
603 "contexts": ["blessed_extension"] | 603 "contexts": ["blessed_extension"] |
604 } | 604 } |
605 } | 605 } |
OLD | NEW |