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