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 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
595 "contexts": ["blessed_extension"] | 595 "contexts": ["blessed_extension"] |
596 }, | 596 }, |
597 "processes": { | 597 "processes": { |
598 "dependencies": ["permission:processes"], | 598 "dependencies": ["permission:processes"], |
599 "contexts": ["blessed_extension"] | 599 "contexts": ["blessed_extension"] |
600 }, | 600 }, |
601 "proxy": { | 601 "proxy": { |
602 "dependencies": ["permission:proxy"], | 602 "dependencies": ["permission:proxy"], |
603 "contexts": ["blessed_extension"] | 603 "contexts": ["blessed_extension"] |
604 }, | 604 }, |
605 "pushMessaging": { | |
606 "dependencies": ["permission:pushMessaging"], | |
607 "contexts": ["blessed_extension"] | |
608 }, | |
609 "imageWriterPrivate": { | 605 "imageWriterPrivate": { |
610 "dependencies": ["permission:imageWriterPrivate"], | 606 "dependencies": ["permission:imageWriterPrivate"], |
611 "extension_types": ["platform_app"], | 607 "extension_types": ["platform_app"], |
612 "contexts": ["blessed_extension"] | 608 "contexts": ["blessed_extension"] |
613 }, | 609 }, |
614 "readingListPrivate": { | 610 "readingListPrivate": { |
615 "dependencies": ["permission:readingListPrivate"], | 611 "dependencies": ["permission:readingListPrivate"], |
616 "contexts": ["blessed_extension"] | 612 "contexts": ["blessed_extension"] |
617 }, | 613 }, |
618 "rtcPrivate": { | 614 "rtcPrivate": { |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 "internal": true, | 711 "internal": true, |
716 "channel": "stable", | 712 "channel": "stable", |
717 "dependencies": ["permission:webview"], | 713 "dependencies": ["permission:webview"], |
718 "contexts": ["blessed_extension"] | 714 "contexts": ["blessed_extension"] |
719 }, | 715 }, |
720 "windows": { | 716 "windows": { |
721 "dependencies": ["api:tabs"], | 717 "dependencies": ["api:tabs"], |
722 "contexts": ["blessed_extension"] | 718 "contexts": ["blessed_extension"] |
723 } | 719 } |
724 } | 720 } |
OLD | NEW |