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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 "contexts": ["blessed_extension"] | 207 "contexts": ["blessed_extension"] |
208 }, | 208 }, |
209 "copresence": { | 209 "copresence": { |
210 "dependencies": ["permission:copresence"], | 210 "dependencies": ["permission:copresence"], |
211 "contexts": ["blessed_extension"] | 211 "contexts": ["blessed_extension"] |
212 }, | 212 }, |
213 "copresencePrivate": { | 213 "copresencePrivate": { |
214 "dependencies": ["permission:copresencePrivate"], | 214 "dependencies": ["permission:copresencePrivate"], |
215 "contexts": ["blessed_extension"] | 215 "contexts": ["blessed_extension"] |
216 }, | 216 }, |
| 217 "cryptotokenPrivate": { |
| 218 "dependencies": ["permission:cryptotokenPrivate"], |
| 219 "contexts": ["blessed_extension"] |
| 220 }, |
217 "debugger": { | 221 "debugger": { |
218 "dependencies": ["permission:debugger"], | 222 "dependencies": ["permission:debugger"], |
219 "contexts": ["blessed_extension"] | 223 "contexts": ["blessed_extension"] |
220 }, | 224 }, |
221 "declarativeContent": { | 225 "declarativeContent": { |
222 "dependencies": ["permission:declarativeContent"], | 226 "dependencies": ["permission:declarativeContent"], |
223 "contexts": ["blessed_extension"] | 227 "contexts": ["blessed_extension"] |
224 }, | 228 }, |
225 "desktopCapture": { | 229 "desktopCapture": { |
226 "dependencies": ["permission:desktopCapture"], | 230 "dependencies": ["permission:desktopCapture"], |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
704 "internal": true, | 708 "internal": true, |
705 "channel": "stable", | 709 "channel": "stable", |
706 "dependencies": ["permission:webview"], | 710 "dependencies": ["permission:webview"], |
707 "contexts": ["blessed_extension"] | 711 "contexts": ["blessed_extension"] |
708 }, | 712 }, |
709 "windows": { | 713 "windows": { |
710 "dependencies": ["api:tabs"], | 714 "dependencies": ["api:tabs"], |
711 "contexts": ["blessed_extension"] | 715 "contexts": ["blessed_extension"] |
712 } | 716 } |
713 } | 717 } |
OLD | NEW |