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 // See c/c/e/features/* to understand this file, in particular feature.h, | 5 // See c/c/e/features/* to understand this file, in particular feature.h, |
6 // simple_feature.h, and base_feature_provider.h. | 6 // simple_feature.h, and base_feature_provider.h. |
7 // | 7 // |
8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
10 | 10 |
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 "dependencies": ["permission:webNavigation"], | 759 "dependencies": ["permission:webNavigation"], |
760 "contexts": ["blessed_extension"] | 760 "contexts": ["blessed_extension"] |
761 }, | 761 }, |
762 "webRequest": { | 762 "webRequest": { |
763 "dependencies": ["permission:webRequest"], | 763 "dependencies": ["permission:webRequest"], |
764 "contexts": ["blessed_extension"] | 764 "contexts": ["blessed_extension"] |
765 }, | 765 }, |
766 "webRequestInternal": { | 766 "webRequestInternal": { |
767 "internal": true, | 767 "internal": true, |
768 "channel": "stable", | 768 "channel": "stable", |
769 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 769 "contexts": ["blessed_extension", "unblessed_extension"] |
770 }, | 770 }, |
771 "webrtcAudioPrivate": { | 771 "webrtcAudioPrivate": { |
772 "dependencies": ["permission:webrtcAudioPrivate"], | 772 "dependencies": ["permission:webrtcAudioPrivate"], |
773 "contexts": ["blessed_extension"] | 773 "contexts": ["blessed_extension"] |
774 }, | 774 }, |
775 "webrtcLoggingPrivate": { | 775 "webrtcLoggingPrivate": { |
776 "dependencies": ["permission:webrtcLoggingPrivate"], | 776 "dependencies": ["permission:webrtcLoggingPrivate"], |
777 "contexts": ["blessed_extension"] | 777 "contexts": ["blessed_extension"] |
778 }, | 778 }, |
779 "webstore": { | 779 "webstore": { |
(...skipping 21 matching lines...) Expand all Loading... |
801 "internal": true, | 801 "internal": true, |
802 "channel": "stable", | 802 "channel": "stable", |
803 "dependencies": ["permission:webview"], | 803 "dependencies": ["permission:webview"], |
804 "contexts": ["blessed_extension"] | 804 "contexts": ["blessed_extension"] |
805 }, | 805 }, |
806 "windows": { | 806 "windows": { |
807 "dependencies": ["api:tabs"], | 807 "dependencies": ["api:tabs"], |
808 "contexts": ["blessed_extension"] | 808 "contexts": ["blessed_extension"] |
809 } | 809 } |
810 } | 810 } |
OLD | NEW |