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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
557 }, | 557 }, |
558 "pageCapture": { | 558 "pageCapture": { |
559 "dependencies": ["permission:pageCapture"], | 559 "dependencies": ["permission:pageCapture"], |
560 "contexts": ["blessed_extension"] | 560 "contexts": ["blessed_extension"] |
561 }, | 561 }, |
562 "permissions": { | 562 "permissions": { |
563 "channel": "stable", | 563 "channel": "stable", |
564 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 564 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
565 "contexts": ["blessed_extension"] | 565 "contexts": ["blessed_extension"] |
566 }, | 566 }, |
| 567 "platformKeys": { |
| 568 "dependencies": ["permission:platformKeys"], |
| 569 "contexts": ["blessed_extension"] |
| 570 }, |
567 "platformKeysInternal": [{ | 571 "platformKeysInternal": [{ |
| 572 "dependencies": ["permission:platformKeys"], |
| 573 "internal": true, |
| 574 "contexts": ["blessed_extension"] |
| 575 },{ |
568 "dependencies": ["permission:enterprise.platformKeys"], | 576 "dependencies": ["permission:enterprise.platformKeys"], |
569 "internal": true, | 577 "internal": true, |
570 "contexts": ["blessed_extension"] | 578 "contexts": ["blessed_extension"] |
571 }], | 579 }], |
572 "preferencesPrivate": { | 580 "preferencesPrivate": { |
573 "dependencies": ["permission:preferencesPrivate"], | 581 "dependencies": ["permission:preferencesPrivate"], |
574 "contexts": ["blessed_extension"] | 582 "contexts": ["blessed_extension"] |
575 }, | 583 }, |
576 "principalsPrivate": { | 584 "principalsPrivate": { |
577 "dependencies": ["permission:principalsPrivate"], | 585 "dependencies": ["permission:principalsPrivate"], |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
702 "internal": true, | 710 "internal": true, |
703 "channel": "stable", | 711 "channel": "stable", |
704 "dependencies": ["permission:webview"], | 712 "dependencies": ["permission:webview"], |
705 "contexts": ["blessed_extension"] | 713 "contexts": ["blessed_extension"] |
706 }, | 714 }, |
707 "windows": { | 715 "windows": { |
708 "dependencies": ["api:tabs"], | 716 "dependencies": ["api:tabs"], |
709 "contexts": ["blessed_extension"] | 717 "contexts": ["blessed_extension"] |
710 } | 718 } |
711 } | 719 } |
OLD | NEW |