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 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
562 }, | 562 }, |
563 "pageCapture": { | 563 "pageCapture": { |
564 "dependencies": ["permission:pageCapture"], | 564 "dependencies": ["permission:pageCapture"], |
565 "contexts": ["blessed_extension"] | 565 "contexts": ["blessed_extension"] |
566 }, | 566 }, |
567 "permissions": { | 567 "permissions": { |
568 "channel": "stable", | 568 "channel": "stable", |
569 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 569 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
570 "contexts": ["blessed_extension"] | 570 "contexts": ["blessed_extension"] |
571 }, | 571 }, |
572 "power": { | |
573 "dependencies": ["permission:power"], | |
574 "contexts": ["blessed_extension"] | |
575 }, | |
576 "preferencesPrivate": { | 572 "preferencesPrivate": { |
577 "dependencies": ["permission:preferencesPrivate"], | 573 "dependencies": ["permission:preferencesPrivate"], |
578 "contexts": ["blessed_extension"] | 574 "contexts": ["blessed_extension"] |
579 }, | 575 }, |
580 "principalsPrivate": { | 576 "principalsPrivate": { |
581 "dependencies": ["permission:principalsPrivate"], | 577 "dependencies": ["permission:principalsPrivate"], |
582 "contexts": ["blessed_extension"] | 578 "contexts": ["blessed_extension"] |
583 }, | 579 }, |
584 "privacy": { | 580 "privacy": { |
585 "dependencies": ["permission:privacy"], | 581 "dependencies": ["permission:privacy"], |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
754 "internal": true, | 750 "internal": true, |
755 "channel": "stable", | 751 "channel": "stable", |
756 "dependencies": ["permission:webview"], | 752 "dependencies": ["permission:webview"], |
757 "contexts": ["blessed_extension"] | 753 "contexts": ["blessed_extension"] |
758 }, | 754 }, |
759 "windows": { | 755 "windows": { |
760 "dependencies": ["api:tabs"], | 756 "dependencies": ["api:tabs"], |
761 "contexts": ["blessed_extension"] | 757 "contexts": ["blessed_extension"] |
762 } | 758 } |
763 } | 759 } |
OLD | NEW |