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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 }, | 548 }, |
549 "pageCapture": { | 549 "pageCapture": { |
550 "dependencies": ["permission:pageCapture"], | 550 "dependencies": ["permission:pageCapture"], |
551 "contexts": ["blessed_extension"] | 551 "contexts": ["blessed_extension"] |
552 }, | 552 }, |
553 "permissions": { | 553 "permissions": { |
554 "channel": "stable", | 554 "channel": "stable", |
555 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 555 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
556 "contexts": ["blessed_extension"] | 556 "contexts": ["blessed_extension"] |
557 }, | 557 }, |
| 558 "platformKeys": { |
| 559 "dependencies": ["permission:platformKeys"], |
| 560 "contexts": ["blessed_extension"] |
| 561 }, |
558 "platformKeysInternal": [{ | 562 "platformKeysInternal": [{ |
| 563 "dependencies": ["permission:platformKeys"], |
| 564 "internal": true, |
| 565 "contexts": ["blessed_extension"] |
| 566 },{ |
559 "dependencies": ["permission:enterprise.platformKeys"], | 567 "dependencies": ["permission:enterprise.platformKeys"], |
560 "internal": true, | 568 "internal": true, |
561 "contexts": ["blessed_extension"] | 569 "contexts": ["blessed_extension"] |
562 }], | 570 }], |
563 "preferencesPrivate": { | 571 "preferencesPrivate": { |
564 "dependencies": ["permission:preferencesPrivate"], | 572 "dependencies": ["permission:preferencesPrivate"], |
565 "contexts": ["blessed_extension"] | 573 "contexts": ["blessed_extension"] |
566 }, | 574 }, |
567 "principalsPrivate": { | 575 "principalsPrivate": { |
568 "dependencies": ["permission:principalsPrivate"], | 576 "dependencies": ["permission:principalsPrivate"], |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
693 "internal": true, | 701 "internal": true, |
694 "channel": "stable", | 702 "channel": "stable", |
695 "dependencies": ["permission:webview"], | 703 "dependencies": ["permission:webview"], |
696 "contexts": ["blessed_extension"] | 704 "contexts": ["blessed_extension"] |
697 }, | 705 }, |
698 "windows": { | 706 "windows": { |
699 "dependencies": ["api:tabs"], | 707 "dependencies": ["api:tabs"], |
700 "contexts": ["blessed_extension"] | 708 "contexts": ["blessed_extension"] |
701 } | 709 } |
702 } | 710 } |
OLD | NEW |