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 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
10 | 10 |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 "downloadsInternal": { | 265 "downloadsInternal": { |
266 "internal": true, | 266 "internal": true, |
267 "channel": "stable", | 267 "channel": "stable", |
268 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 268 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
269 }, | 269 }, |
270 "echoPrivate": { | 270 "echoPrivate": { |
271 "platforms": ["chromeos"], | 271 "platforms": ["chromeos"], |
272 "dependencies": ["permission:echoPrivate"], | 272 "dependencies": ["permission:echoPrivate"], |
273 "contexts": ["blessed_extension"] | 273 "contexts": ["blessed_extension"] |
274 }, | 274 }, |
| 275 "enterprise.certificates": { |
| 276 "channel": "dev", |
| 277 "platforms": ["chromeos"], |
| 278 "dependencies": ["permission:enterprise.certificates"], |
| 279 "contexts": ["blessed_extension"] |
| 280 }, |
| 281 "enterprise.certificatesInternal": { |
| 282 "channel": "dev", |
| 283 "platforms": ["chromeos"], |
| 284 "dependencies": ["permission:enterprise.certificates"], |
| 285 "internal": true, |
| 286 "contexts": ["blessed_extension"] |
| 287 }, |
275 "enterprise.platformKeysPrivate": { | 288 "enterprise.platformKeysPrivate": { |
276 "platforms": ["chromeos"], | 289 "platforms": ["chromeos"], |
277 "dependencies": ["permission:enterprise.platformKeysPrivate"], | 290 "dependencies": ["permission:enterprise.platformKeysPrivate"], |
278 "contexts": ["blessed_extension"] | 291 "contexts": ["blessed_extension"] |
279 }, | 292 }, |
280 "events": { | 293 "events": { |
281 "internal": true, | 294 "internal": true, |
282 "channel": "stable", | 295 "channel": "stable", |
283 "extension_types": ["platform_app", "extension"], | 296 "extension_types": ["platform_app", "extension"], |
284 "contexts": "all", | 297 "contexts": "all", |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
801 "internal": true, | 814 "internal": true, |
802 "channel": "stable", | 815 "channel": "stable", |
803 "dependencies": ["permission:webview"], | 816 "dependencies": ["permission:webview"], |
804 "contexts": ["blessed_extension"] | 817 "contexts": ["blessed_extension"] |
805 }, | 818 }, |
806 "windows": { | 819 "windows": { |
807 "dependencies": ["api:tabs"], | 820 "dependencies": ["api:tabs"], |
808 "contexts": ["blessed_extension"] | 821 "contexts": ["blessed_extension"] |
809 } | 822 } |
810 } | 823 } |
OLD | NEW |