OLD | NEW |
---|---|
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
692 }, | 692 }, |
693 "proxy": { | 693 "proxy": { |
694 "dependencies": ["permission:proxy"], | 694 "dependencies": ["permission:proxy"], |
695 "contexts": ["blessed_extension"] | 695 "contexts": ["blessed_extension"] |
696 }, | 696 }, |
697 "imageWriterPrivate": { | 697 "imageWriterPrivate": { |
698 "dependencies": ["permission:imageWriterPrivate"], | 698 "dependencies": ["permission:imageWriterPrivate"], |
699 "extension_types": ["platform_app"], | 699 "extension_types": ["platform_app"], |
700 "contexts": ["blessed_extension"] | 700 "contexts": ["blessed_extension"] |
701 }, | 701 }, |
702 "quickUnlockPrivate": { | |
703 "channel": "stable", | |
704 "contexts": ["webui"], | |
705 "matches": [ | |
706 "chrome://md-settings/*" | |
707 ] | |
Devlin
2016/06/13 14:50:23
this should be cros-only, right? (I think you spe
jdufault
2016/06/20 22:18:25
Done.
| |
708 }, | |
702 "resourcesPrivate": [{ | 709 "resourcesPrivate": [{ |
703 "dependencies": ["permission:resourcesPrivate"], | 710 "dependencies": ["permission:resourcesPrivate"], |
704 "contexts": ["blessed_extension"] | 711 "contexts": ["blessed_extension"] |
705 }, { | 712 }, { |
706 "channel": "stable", | 713 "channel": "stable", |
707 "contexts": ["webui"], | 714 "contexts": ["webui"], |
708 "matches": [ | 715 "matches": [ |
709 "chrome://print/*" | 716 "chrome://print/*" |
710 ] | 717 ] |
711 }], | 718 }], |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
841 "internal": true, | 848 "internal": true, |
842 "channel": "stable", | 849 "channel": "stable", |
843 "dependencies": ["permission:webview"], | 850 "dependencies": ["permission:webview"], |
844 "contexts": ["blessed_extension"] | 851 "contexts": ["blessed_extension"] |
845 }, | 852 }, |
846 "windows": { | 853 "windows": { |
847 "dependencies": ["api:tabs"], | 854 "dependencies": ["api:tabs"], |
848 "contexts": ["blessed_extension"] | 855 "contexts": ["blessed_extension"] |
849 } | 856 } |
850 } | 857 } |
OLD | NEW |