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 chrome/common/extensions/api/_features.md to understand this file, as | 6 // See chrome/common/extensions/api/_features.md to understand this file, as |
7 // well as feature.h, simple_feature.h, and base_feature_provider.h. | 7 // well as 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 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
669 "processes": { | 669 "processes": { |
670 "dependencies": ["permission:processes"], | 670 "dependencies": ["permission:processes"], |
671 "contexts": ["blessed_extension"] | 671 "contexts": ["blessed_extension"] |
672 }, | 672 }, |
673 "proxy": { | 673 "proxy": { |
674 "dependencies": ["permission:proxy"], | 674 "dependencies": ["permission:proxy"], |
675 "contexts": ["blessed_extension"] | 675 "contexts": ["blessed_extension"] |
676 }, | 676 }, |
677 "imageWriterPrivate": { | 677 "imageWriterPrivate": { |
678 "dependencies": ["permission:imageWriterPrivate"], | 678 "dependencies": ["permission:imageWriterPrivate"], |
679 "extension_types": ["extension", "platform_app"], | |
680 "contexts": ["blessed_extension"] | 679 "contexts": ["blessed_extension"] |
681 }, | 680 }, |
682 "quickUnlockPrivate": { | 681 "quickUnlockPrivate": { |
683 "channel": "stable", | 682 "channel": "stable", |
684 "contexts": ["webui"], | 683 "contexts": ["webui"], |
685 "matches": [ | 684 "matches": [ |
686 "chrome://md-settings/*", | 685 "chrome://md-settings/*", |
687 "chrome://settings/*", | 686 "chrome://settings/*", |
688 "chrome://settings-frame/*" | 687 "chrome://settings-frame/*" |
689 ], | 688 ], |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 "internal": true, | 830 "internal": true, |
832 "channel": "stable", | 831 "channel": "stable", |
833 "dependencies": ["permission:webview"], | 832 "dependencies": ["permission:webview"], |
834 "contexts": ["blessed_extension"] | 833 "contexts": ["blessed_extension"] |
835 }, | 834 }, |
836 "windows": { | 835 "windows": { |
837 "dependencies": ["api:tabs"], | 836 "dependencies": ["api:tabs"], |
838 "contexts": ["blessed_extension"] | 837 "contexts": ["blessed_extension"] |
839 } | 838 } |
840 } | 839 } |
OLD | NEW |