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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 "contexts": ["blessed_extension"] | 676 "contexts": ["blessed_extension"] |
677 }, | 677 }, |
678 "syncedNotificationsPrivate": { | 678 "syncedNotificationsPrivate": { |
679 "contexts": ["blessed_extension"], | 679 "contexts": ["blessed_extension"], |
680 "dependencies": ["permission:syncedNotificationsPrivate"] | 680 "dependencies": ["permission:syncedNotificationsPrivate"] |
681 }, | 681 }, |
682 "systemIndicator": { | 682 "systemIndicator": { |
683 "dependencies": ["manifest:system_indicator"], | 683 "dependencies": ["manifest:system_indicator"], |
684 "contexts": ["blessed_extension"] | 684 "contexts": ["blessed_extension"] |
685 }, | 685 }, |
686 "system.cpu": { | |
687 "dependencies": ["permission:system.cpu"], | |
688 "contexts": ["blessed_extension"] | |
689 }, | |
690 "system.display": { | |
691 "dependencies": ["permission:system.display"], | |
692 "contexts": ["blessed_extension"] | |
693 }, | |
694 "system.memory": { | |
695 "dependencies": ["permission:system.memory"], | |
696 "contexts": ["blessed_extension"] | |
697 }, | |
698 "system.network": { | |
699 "dependencies": ["permission:system.network"], | |
700 "contexts": ["blessed_extension"] | |
701 }, | |
702 "system.storage": { | |
703 "dependencies": ["permission:system.storage"], | |
704 "contexts": ["blessed_extension"] | |
705 }, | |
706 "system.storage.getAvailableCapacity": { | |
707 "channel": "dev" | |
708 }, | |
709 "systemPrivate": { | 686 "systemPrivate": { |
710 "dependencies": ["permission:systemPrivate"], | 687 "dependencies": ["permission:systemPrivate"], |
711 "contexts": ["blessed_extension"] | 688 "contexts": ["blessed_extension"] |
712 }, | 689 }, |
713 "tabCapture": { | 690 "tabCapture": { |
714 "dependencies": ["permission:tabCapture"], | 691 "dependencies": ["permission:tabCapture"], |
715 "contexts": ["blessed_extension"] | 692 "contexts": ["blessed_extension"] |
716 }, | 693 }, |
717 "tabs": { | 694 "tabs": { |
718 "channel": "stable", | 695 "channel": "stable", |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
846 "webviewTag": { | 823 "webviewTag": { |
847 "channel": "stable", | 824 "channel": "stable", |
848 "dependencies": ["permission:webview"], | 825 "dependencies": ["permission:webview"], |
849 "contexts": ["blessed_extension"] | 826 "contexts": ["blessed_extension"] |
850 }, | 827 }, |
851 "windows": { | 828 "windows": { |
852 "dependencies": ["api:tabs"], | 829 "dependencies": ["api:tabs"], |
853 "contexts": ["blessed_extension"] | 830 "contexts": ["blessed_extension"] |
854 } | 831 } |
855 } | 832 } |
OLD | NEW |