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 "rtcPrivate": { | 614 "rtcPrivate": { |
615 "dependencies": ["permission:rtcPrivate"], | 615 "dependencies": ["permission:rtcPrivate"], |
616 "contexts": ["blessed_extension"] | 616 "contexts": ["blessed_extension"] |
617 }, | 617 }, |
618 "sessions": { | 618 "sessions": { |
619 "dependencies": ["permission:sessions"], | 619 "dependencies": ["permission:sessions"], |
620 "contexts": ["blessed_extension"] | 620 "contexts": ["blessed_extension"] |
621 }, | 621 }, |
| 622 "settingsPrivate": [{ |
| 623 "dependencies": ["permission:settingsPrivate"], |
| 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 "signedInDevices": { | 634 "signedInDevices": { |
623 "dependencies": ["permission:signedInDevices"], | 635 "dependencies": ["permission:signedInDevices"], |
624 "contexts": ["blessed_extension"] | 636 "contexts": ["blessed_extension"] |
625 }, | 637 }, |
626 "streamsPrivate": { | 638 "streamsPrivate": { |
627 "dependencies": ["permission:streamsPrivate"], | 639 "dependencies": ["permission:streamsPrivate"], |
628 "contexts": ["blessed_extension"] | 640 "contexts": ["blessed_extension"] |
629 }, | 641 }, |
630 "syncFileSystem": { | 642 "syncFileSystem": { |
631 "dependencies": ["permission:syncFileSystem"], | 643 "dependencies": ["permission:syncFileSystem"], |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
711 "internal": true, | 723 "internal": true, |
712 "channel": "stable", | 724 "channel": "stable", |
713 "dependencies": ["permission:webview"], | 725 "dependencies": ["permission:webview"], |
714 "contexts": ["blessed_extension"] | 726 "contexts": ["blessed_extension"] |
715 }, | 727 }, |
716 "windows": { | 728 "windows": { |
717 "dependencies": ["api:tabs"], | 729 "dependencies": ["api:tabs"], |
718 "contexts": ["blessed_extension"] | 730 "contexts": ["blessed_extension"] |
719 } | 731 } |
720 } | 732 } |
OLD | NEW |