| 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 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 "contexts": ["blessed_extension"] | 636 "contexts": ["blessed_extension"] |
| 637 }, | 637 }, |
| 638 "syncedNotificationsPrivate": { | 638 "syncedNotificationsPrivate": { |
| 639 "contexts": ["blessed_extension"], | 639 "contexts": ["blessed_extension"], |
| 640 "dependencies": ["permission:syncedNotificationsPrivate"] | 640 "dependencies": ["permission:syncedNotificationsPrivate"] |
| 641 }, | 641 }, |
| 642 "systemIndicator": { | 642 "systemIndicator": { |
| 643 "dependencies": ["manifest:system_indicator"], | 643 "dependencies": ["manifest:system_indicator"], |
| 644 "contexts": ["blessed_extension"] | 644 "contexts": ["blessed_extension"] |
| 645 }, | 645 }, |
| 646 "system.cpu": { | |
| 647 "dependencies": ["permission:system.cpu"], | |
| 648 "contexts": ["blessed_extension"] | |
| 649 }, | |
| 650 "system.display": { | |
| 651 "dependencies": ["permission:system.display"], | |
| 652 "contexts": ["blessed_extension"] | |
| 653 }, | |
| 654 "system.memory": { | |
| 655 "dependencies": ["permission:system.memory"], | |
| 656 "contexts": ["blessed_extension"] | |
| 657 }, | |
| 658 "system.network": { | |
| 659 "dependencies": ["permission:system.network"], | |
| 660 "contexts": ["blessed_extension"] | |
| 661 }, | |
| 662 "system.storage": { | |
| 663 "dependencies": ["permission:system.storage"], | |
| 664 "contexts": ["blessed_extension"] | |
| 665 }, | |
| 666 "system.storage.getAvailableCapacity": { | |
| 667 "channel": "dev" | |
| 668 }, | |
| 669 "systemPrivate": { | 646 "systemPrivate": { |
| 670 "dependencies": ["permission:systemPrivate"], | 647 "dependencies": ["permission:systemPrivate"], |
| 671 "contexts": ["blessed_extension"] | 648 "contexts": ["blessed_extension"] |
| 672 }, | 649 }, |
| 673 "tabCapture": { | 650 "tabCapture": { |
| 674 "dependencies": ["permission:tabCapture"], | 651 "dependencies": ["permission:tabCapture"], |
| 675 "contexts": ["blessed_extension"] | 652 "contexts": ["blessed_extension"] |
| 676 }, | 653 }, |
| 677 "tabs": { | 654 "tabs": { |
| 678 "channel": "stable", | 655 "channel": "stable", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 767 "internal": true, | 744 "internal": true, |
| 768 "channel": "stable", | 745 "channel": "stable", |
| 769 "dependencies": ["permission:webview"], | 746 "dependencies": ["permission:webview"], |
| 770 "contexts": ["blessed_extension"] | 747 "contexts": ["blessed_extension"] |
| 771 }, | 748 }, |
| 772 "windows": { | 749 "windows": { |
| 773 "dependencies": ["api:tabs"], | 750 "dependencies": ["api:tabs"], |
| 774 "contexts": ["blessed_extension"] | 751 "contexts": ["blessed_extension"] |
| 775 } | 752 } |
| 776 } | 753 } |
| OLD | NEW |