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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
612 "contexts": ["blessed_extension"] | 612 "contexts": ["blessed_extension"] |
613 }, | 613 }, |
614 "readingListPrivate": { | 614 "readingListPrivate": { |
615 "dependencies": ["permission:readingListPrivate"], | 615 "dependencies": ["permission:readingListPrivate"], |
616 "contexts": ["blessed_extension"] | 616 "contexts": ["blessed_extension"] |
617 }, | 617 }, |
618 "rtcPrivate": { | 618 "rtcPrivate": { |
619 "dependencies": ["permission:rtcPrivate"], | 619 "dependencies": ["permission:rtcPrivate"], |
620 "contexts": ["blessed_extension"] | 620 "contexts": ["blessed_extension"] |
621 }, | 621 }, |
| 622 "searchEnginesPrivate": [{ |
| 623 "dependencies": ["permission:searchEnginesPrivate"], |
| 624 "contexts": ["blessed_extension"] |
| 625 }, { |
| 626 "channel": "trunk", |
| 627 "contexts": ["webui"], |
| 628 "matches": [ |
| 629 "chrome://md-settings/*", |
| 630 "chrome://settings/*", |
| 631 "chrome://settings-frame/*" |
| 632 ] |
| 633 }], |
622 "sessions": { | 634 "sessions": { |
623 "dependencies": ["permission:sessions"], | 635 "dependencies": ["permission:sessions"], |
624 "contexts": ["blessed_extension"] | 636 "contexts": ["blessed_extension"] |
625 }, | 637 }, |
626 "settingsPrivate": [{ | 638 "settingsPrivate": [{ |
627 "dependencies": ["permission:settingsPrivate"], | 639 "dependencies": ["permission:settingsPrivate"], |
628 "contexts": ["blessed_extension"] | 640 "contexts": ["blessed_extension"] |
629 }, { | 641 }, { |
630 "channel": "trunk", | 642 "channel": "trunk", |
631 "contexts": ["webui"], | 643 "contexts": ["webui"], |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
727 "internal": true, | 739 "internal": true, |
728 "channel": "stable", | 740 "channel": "stable", |
729 "dependencies": ["permission:webview"], | 741 "dependencies": ["permission:webview"], |
730 "contexts": ["blessed_extension"] | 742 "contexts": ["blessed_extension"] |
731 }, | 743 }, |
732 "windows": { | 744 "windows": { |
733 "dependencies": ["api:tabs"], | 745 "dependencies": ["api:tabs"], |
734 "contexts": ["blessed_extension"] | 746 "contexts": ["blessed_extension"] |
735 } | 747 } |
736 } | 748 } |
OLD | NEW |