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 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
577 "contexts": ["blessed_extension"] | 577 "contexts": ["blessed_extension"] |
578 }, | 578 }, |
579 "pageAction": { | 579 "pageAction": { |
580 "dependencies": ["manifest:page_action"], | 580 "dependencies": ["manifest:page_action"], |
581 "contexts": ["blessed_extension"] | 581 "contexts": ["blessed_extension"] |
582 }, | 582 }, |
583 "pageCapture": { | 583 "pageCapture": { |
584 "dependencies": ["permission:pageCapture"], | 584 "dependencies": ["permission:pageCapture"], |
585 "contexts": ["blessed_extension"] | 585 "contexts": ["blessed_extension"] |
586 }, | 586 }, |
| 587 "passwordsPrivate": [{ |
| 588 "dependencies": ["permission:passwordsPrivate"], |
| 589 "contexts": ["blessed_extension"] |
| 590 }, { |
| 591 "channel": "trunk", |
| 592 "contexts": ["webui"], |
| 593 "matches": [ |
| 594 "chrome://md-settings/*", |
| 595 "chrome://settings/*", |
| 596 "chrome://settings-frame/*" |
| 597 ] |
| 598 }], |
587 "permissions": { | 599 "permissions": { |
588 "channel": "stable", | 600 "channel": "stable", |
589 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 601 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
590 "contexts": ["blessed_extension"] | 602 "contexts": ["blessed_extension"] |
591 }, | 603 }, |
592 "platformKeys": { | 604 "platformKeys": { |
593 "dependencies": ["permission:platformKeys"], | 605 "dependencies": ["permission:platformKeys"], |
594 "contexts": ["blessed_extension"] | 606 "contexts": ["blessed_extension"] |
595 }, | 607 }, |
596 "platformKeysInternal": [{ | 608 "platformKeysInternal": [{ |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
763 "internal": true, | 775 "internal": true, |
764 "channel": "stable", | 776 "channel": "stable", |
765 "dependencies": ["permission:webview"], | 777 "dependencies": ["permission:webview"], |
766 "contexts": ["blessed_extension"] | 778 "contexts": ["blessed_extension"] |
767 }, | 779 }, |
768 "windows": { | 780 "windows": { |
769 "dependencies": ["api:tabs"], | 781 "dependencies": ["api:tabs"], |
770 "contexts": ["blessed_extension"] | 782 "contexts": ["blessed_extension"] |
771 } | 783 } |
772 } | 784 } |
OLD | NEW |