| 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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 }, | 559 }, |
| 560 "pageCapture": { | 560 "pageCapture": { |
| 561 "dependencies": ["permission:pageCapture"], | 561 "dependencies": ["permission:pageCapture"], |
| 562 "contexts": ["blessed_extension"] | 562 "contexts": ["blessed_extension"] |
| 563 }, | 563 }, |
| 564 "permissions": { | 564 "permissions": { |
| 565 "channel": "stable", | 565 "channel": "stable", |
| 566 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 566 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
| 567 "contexts": ["blessed_extension"] | 567 "contexts": ["blessed_extension"] |
| 568 }, | 568 }, |
| 569 "platformKeysInternal": [{ |
| 570 "dependencies": ["permission:enterprise.platformKeys"], |
| 571 "internal": true, |
| 572 "contexts": ["blessed_extension"] |
| 573 }], |
| 569 "preferencesPrivate": { | 574 "preferencesPrivate": { |
| 570 "dependencies": ["permission:preferencesPrivate"], | 575 "dependencies": ["permission:preferencesPrivate"], |
| 571 "contexts": ["blessed_extension"] | 576 "contexts": ["blessed_extension"] |
| 572 }, | 577 }, |
| 573 "principalsPrivate": { | 578 "principalsPrivate": { |
| 574 "dependencies": ["permission:principalsPrivate"], | 579 "dependencies": ["permission:principalsPrivate"], |
| 575 "contexts": ["blessed_extension"] | 580 "contexts": ["blessed_extension"] |
| 576 }, | 581 }, |
| 577 "privacy": { | 582 "privacy": { |
| 578 "dependencies": ["permission:privacy"], | 583 "dependencies": ["permission:privacy"], |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 "internal": true, | 716 "internal": true, |
| 712 "channel": "stable", | 717 "channel": "stable", |
| 713 "dependencies": ["permission:webview"], | 718 "dependencies": ["permission:webview"], |
| 714 "contexts": ["blessed_extension"] | 719 "contexts": ["blessed_extension"] |
| 715 }, | 720 }, |
| 716 "windows": { | 721 "windows": { |
| 717 "dependencies": ["api:tabs"], | 722 "dependencies": ["api:tabs"], |
| 718 "contexts": ["blessed_extension"] | 723 "contexts": ["blessed_extension"] |
| 719 } | 724 } |
| 720 } | 725 } |
| OLD | NEW |