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 ], |
| 708 "platforms": ["chromeos"] |
| 709 }, |
702 "resourcesPrivate": [{ | 710 "resourcesPrivate": [{ |
703 "dependencies": ["permission:resourcesPrivate"], | 711 "dependencies": ["permission:resourcesPrivate"], |
704 "contexts": ["blessed_extension"] | 712 "contexts": ["blessed_extension"] |
705 }, { | 713 }, { |
706 "channel": "stable", | 714 "channel": "stable", |
707 "contexts": ["webui"], | 715 "contexts": ["webui"], |
708 "matches": [ | 716 "matches": [ |
709 "chrome://print/*" | 717 "chrome://print/*" |
710 ] | 718 ] |
711 }], | 719 }], |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
841 "internal": true, | 849 "internal": true, |
842 "channel": "stable", | 850 "channel": "stable", |
843 "dependencies": ["permission:webview"], | 851 "dependencies": ["permission:webview"], |
844 "contexts": ["blessed_extension"] | 852 "contexts": ["blessed_extension"] |
845 }, | 853 }, |
846 "windows": { | 854 "windows": { |
847 "dependencies": ["api:tabs"], | 855 "dependencies": ["api:tabs"], |
848 "contexts": ["blessed_extension"] | 856 "contexts": ["blessed_extension"] |
849 } | 857 } |
850 } | 858 } |
OLD | NEW |