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