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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
607 "contexts": ["blessed_extension"] | 607 "contexts": ["blessed_extension"] |
608 }, | 608 }, |
609 "rtcPrivate": { | 609 "rtcPrivate": { |
610 "dependencies": ["permission:rtcPrivate"], | 610 "dependencies": ["permission:rtcPrivate"], |
611 "contexts": ["blessed_extension"] | 611 "contexts": ["blessed_extension"] |
612 }, | 612 }, |
613 "scriptBadge": { | 613 "scriptBadge": { |
614 "dependencies": ["manifest:script_badge"], | 614 "dependencies": ["manifest:script_badge"], |
615 "contexts": ["blessed_extension"] | 615 "contexts": ["blessed_extension"] |
616 }, | 616 }, |
617 "serial": { | |
618 "dependencies": ["permission:serial"], | |
619 "contexts": ["blessed_extension"] | |
620 }, | |
621 "sessions": { | 617 "sessions": { |
622 "dependencies": ["permission:sessions"], | 618 "dependencies": ["permission:sessions"], |
623 "contexts": ["blessed_extension"] | 619 "contexts": ["blessed_extension"] |
624 }, | 620 }, |
625 "signedInDevices": { | 621 "signedInDevices": { |
626 "dependencies": ["permission:signedInDevices"], | 622 "dependencies": ["permission:signedInDevices"], |
627 "contexts": ["blessed_extension"] | 623 "contexts": ["blessed_extension"] |
628 }, | 624 }, |
629 "streamsPrivate": { | 625 "streamsPrivate": { |
630 "dependencies": ["permission:streamsPrivate"], | 626 "dependencies": ["permission:streamsPrivate"], |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 "internal": true, | 762 "internal": true, |
767 "channel": "stable", | 763 "channel": "stable", |
768 "dependencies": ["permission:webview"], | 764 "dependencies": ["permission:webview"], |
769 "contexts": ["blessed_extension"] | 765 "contexts": ["blessed_extension"] |
770 }, | 766 }, |
771 "windows": { | 767 "windows": { |
772 "dependencies": ["api:tabs"], | 768 "dependencies": ["api:tabs"], |
773 "contexts": ["blessed_extension"] | 769 "contexts": ["blessed_extension"] |
774 } | 770 } |
775 } | 771 } |
OLD | NEW |