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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 "downloadsInternal": { | 298 "downloadsInternal": { |
299 "internal": true, | 299 "internal": true, |
300 "channel": "stable", | 300 "channel": "stable", |
301 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 301 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
302 }, | 302 }, |
303 "echoPrivate": { | 303 "echoPrivate": { |
304 "platforms": ["chromeos"], | 304 "platforms": ["chromeos"], |
305 "dependencies": ["permission:echoPrivate"], | 305 "dependencies": ["permission:echoPrivate"], |
306 "contexts": ["blessed_extension"] | 306 "contexts": ["blessed_extension"] |
307 }, | 307 }, |
| 308 "enterprise.platformKeys": { |
| 309 "dependencies": ["permission:enterprise.platformKeys"], |
| 310 "contexts": ["blessed_extension"] |
| 311 }, |
| 312 "enterprise.platformKeysInternal": { |
| 313 "dependencies": ["permission:enterprise.platformKeys"], |
| 314 "internal": true, |
| 315 "contexts": ["blessed_extension"] |
| 316 }, |
308 "enterprise.platformKeysPrivate": { | 317 "enterprise.platformKeysPrivate": { |
309 "platforms": ["chromeos"], | 318 "platforms": ["chromeos"], |
310 "dependencies": ["permission:enterprise.platformKeysPrivate"], | 319 "dependencies": ["permission:enterprise.platformKeysPrivate"], |
311 "contexts": ["blessed_extension"] | 320 "contexts": ["blessed_extension"] |
312 }, | 321 }, |
313 "events": { | 322 "events": { |
314 "internal": true, | 323 "internal": true, |
315 "channel": "stable", | 324 "channel": "stable", |
316 "extension_types": ["platform_app", "extension"], | 325 "extension_types": ["platform_app", "extension"], |
317 "contexts": "all", | 326 "contexts": "all", |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 "internal": true, | 791 "internal": true, |
783 "channel": "stable", | 792 "channel": "stable", |
784 "dependencies": ["permission:webview"], | 793 "dependencies": ["permission:webview"], |
785 "contexts": ["blessed_extension"] | 794 "contexts": ["blessed_extension"] |
786 }, | 795 }, |
787 "windows": { | 796 "windows": { |
788 "dependencies": ["api:tabs"], | 797 "dependencies": ["api:tabs"], |
789 "contexts": ["blessed_extension"] | 798 "contexts": ["blessed_extension"] |
790 } | 799 } |
791 } | 800 } |
OLD | NEW |