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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 "downloadsInternal": { | 269 "downloadsInternal": { |
270 "internal": true, | 270 "internal": true, |
271 "channel": "stable", | 271 "channel": "stable", |
272 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 272 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
273 }, | 273 }, |
274 "echoPrivate": { | 274 "echoPrivate": { |
275 "platforms": ["chromeos"], | 275 "platforms": ["chromeos"], |
276 "dependencies": ["permission:echoPrivate"], | 276 "dependencies": ["permission:echoPrivate"], |
277 "contexts": ["blessed_extension"] | 277 "contexts": ["blessed_extension"] |
278 }, | 278 }, |
| 279 "enterprise.platformKeys": { |
| 280 "dependencies": ["permission:enterprise.platformKeys"], |
| 281 "contexts": ["blessed_extension"] |
| 282 }, |
| 283 "enterprise.platformKeysInternal": { |
| 284 "dependencies": ["permission:enterprise.platformKeys"], |
| 285 "internal": true, |
| 286 "contexts": ["blessed_extension"] |
| 287 }, |
279 "enterprise.platformKeysPrivate": { | 288 "enterprise.platformKeysPrivate": { |
280 "platforms": ["chromeos"], | 289 "platforms": ["chromeos"], |
281 "dependencies": ["permission:enterprise.platformKeysPrivate"], | 290 "dependencies": ["permission:enterprise.platformKeysPrivate"], |
282 "contexts": ["blessed_extension"] | 291 "contexts": ["blessed_extension"] |
283 }, | 292 }, |
284 "events": { | 293 "events": { |
285 "internal": true, | 294 "internal": true, |
286 "channel": "stable", | 295 "channel": "stable", |
287 "extension_types": ["platform_app", "extension"], | 296 "extension_types": ["platform_app", "extension"], |
288 "contexts": "all", | 297 "contexts": "all", |
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
797 "internal": true, | 806 "internal": true, |
798 "channel": "stable", | 807 "channel": "stable", |
799 "dependencies": ["permission:webview"], | 808 "dependencies": ["permission:webview"], |
800 "contexts": ["blessed_extension"] | 809 "contexts": ["blessed_extension"] |
801 }, | 810 }, |
802 "windows": { | 811 "windows": { |
803 "dependencies": ["api:tabs"], | 812 "dependencies": ["api:tabs"], |
804 "contexts": ["blessed_extension"] | 813 "contexts": ["blessed_extension"] |
805 } | 814 } |
806 } | 815 } |
OLD | NEW |