| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 "internal": true, | 824 "internal": true, |
| 848 "channel": "stable", | 825 "channel": "stable", |
| 849 "dependencies": ["permission:webview"], | 826 "dependencies": ["permission:webview"], |
| 850 "contexts": ["blessed_extension"] | 827 "contexts": ["blessed_extension"] |
| 851 }, | 828 }, |
| 852 "windows": { | 829 "windows": { |
| 853 "dependencies": ["api:tabs"], | 830 "dependencies": ["api:tabs"], |
| 854 "contexts": ["blessed_extension"] | 831 "contexts": ["blessed_extension"] |
| 855 } | 832 } |
| 856 } | 833 } |
| OLD | NEW |