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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 "sessions": { | 622 "sessions": { |
623 "dependencies": ["permission:sessions"], | 623 "dependencies": ["permission:sessions"], |
624 "contexts": ["blessed_extension"] | 624 "contexts": ["blessed_extension"] |
625 }, | 625 }, |
| 626 "settingsPrivate": [{ |
| 627 "dependencies": ["permission:settingsPrivate"], |
| 628 "contexts": ["blessed_extension"] |
| 629 }, { |
| 630 "channel": "trunk", |
| 631 "contexts": ["webui"], |
| 632 "matches": [ |
| 633 "chrome://md-settings/*", |
| 634 "chrome://settings/*", |
| 635 "chrome://settings-frame/*" |
| 636 ] |
| 637 }], |
626 "signedInDevices": { | 638 "signedInDevices": { |
627 "dependencies": ["permission:signedInDevices"], | 639 "dependencies": ["permission:signedInDevices"], |
628 "contexts": ["blessed_extension"] | 640 "contexts": ["blessed_extension"] |
629 }, | 641 }, |
630 "streamsPrivate": { | 642 "streamsPrivate": { |
631 "dependencies": ["permission:streamsPrivate"], | 643 "dependencies": ["permission:streamsPrivate"], |
632 "contexts": ["blessed_extension"] | 644 "contexts": ["blessed_extension"] |
633 }, | 645 }, |
634 "syncFileSystem": { | 646 "syncFileSystem": { |
635 "dependencies": ["permission:syncFileSystem"], | 647 "dependencies": ["permission:syncFileSystem"], |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 "internal": true, | 727 "internal": true, |
716 "channel": "stable", | 728 "channel": "stable", |
717 "dependencies": ["permission:webview"], | 729 "dependencies": ["permission:webview"], |
718 "contexts": ["blessed_extension"] | 730 "contexts": ["blessed_extension"] |
719 }, | 731 }, |
720 "windows": { | 732 "windows": { |
721 "dependencies": ["api:tabs"], | 733 "dependencies": ["api:tabs"], |
722 "contexts": ["blessed_extension"] | 734 "contexts": ["blessed_extension"] |
723 } | 735 } |
724 } | 736 } |
OLD | NEW |