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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
146 "contexts": ["blessed_extension"] | 146 "contexts": ["blessed_extension"] |
147 }, | 147 }, |
148 "desktopCapture": { | 148 "desktopCapture": { |
149 "dependencies": ["permission:desktopCapture"], | 149 "dependencies": ["permission:desktopCapture"], |
150 "contexts": ["blessed_extension"] | 150 "contexts": ["blessed_extension"] |
151 }, | 151 }, |
152 "developerPrivate": { | 152 "developerPrivate": { |
153 "dependencies": ["permission:developerPrivate"], | 153 "dependencies": ["permission:developerPrivate"], |
154 "contexts": ["blessed_extension"] | 154 "contexts": ["blessed_extension"] |
155 }, | 155 }, |
156 "devtools.inspectedWindow": { | |
157 "extension_types": ["extension"] | |
158 }, | |
159 "devtools.network": { | |
160 "extension_types": ["extension"] | |
161 }, | |
162 "devtools.panels": { | |
163 "extension_types": ["extension"] | |
not at google - send to devlin
2013/09/19 19:21:52
Hopefully this won't cause the devtools tests to f
| |
164 }, | |
156 "diagnostics": { | 165 "diagnostics": { |
157 "dependencies": ["permission:diagnostics"], | 166 "dependencies": ["permission:diagnostics"], |
158 "extension_types": ["platform_app"], | 167 "extension_types": ["platform_app"], |
159 "contexts": ["blessed_extension"] | 168 "contexts": ["blessed_extension"] |
160 }, | 169 }, |
161 "dial": { | 170 "dial": { |
162 "dependencies": ["permission:dial"], | 171 "dependencies": ["permission:dial"], |
163 "contexts": ["blessed_extension"] | 172 "contexts": ["blessed_extension"] |
164 }, | 173 }, |
165 "dns": { | 174 "dns": { |
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
614 "webview": { | 623 "webview": { |
615 "internal": true, | 624 "internal": true, |
616 "dependencies": ["permission:webview"], | 625 "dependencies": ["permission:webview"], |
617 "contexts": ["blessed_extension"] | 626 "contexts": ["blessed_extension"] |
618 }, | 627 }, |
619 "windows": { | 628 "windows": { |
620 "dependencies": ["api:tabs"], | 629 "dependencies": ["api:tabs"], |
621 "contexts": ["blessed_extension"] | 630 "contexts": ["blessed_extension"] |
622 } | 631 } |
623 } | 632 } |
OLD | NEW |