| 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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 "platforms": ["chromeos"], | 492 "platforms": ["chromeos"], |
| 493 "dependencies": ["permission:ledger"], | 493 "dependencies": ["permission:ledger"], |
| 494 "contexts": ["blessed_extension"] | 494 "contexts": ["blessed_extension"] |
| 495 }, | 495 }, |
| 496 "location": { | 496 "location": { |
| 497 "dependencies": ["permission:location"], | 497 "dependencies": ["permission:location"], |
| 498 "contexts": ["blessed_extension"] | 498 "contexts": ["blessed_extension"] |
| 499 }, | 499 }, |
| 500 "logPrivate": { | 500 "logPrivate": { |
| 501 "dependencies": ["permission:logPrivate"], | 501 "dependencies": ["permission:logPrivate"], |
| 502 "extension_types": ["extension", "legacy_packaged_app"], | 502 "extension_types": ["extension", "platform_app"], |
| 503 "contexts": ["blessed_extension"] | 503 "contexts": ["blessed_extension"] |
| 504 }, | 504 }, |
| 505 "webcamPrivate": { | 505 "webcamPrivate": { |
| 506 "dependencies": ["permission:webcamPrivate"], | 506 "dependencies": ["permission:webcamPrivate"], |
| 507 "contexts": ["blessed_extension"] | 507 "contexts": ["blessed_extension"] |
| 508 }, | 508 }, |
| 509 "management": { | 509 "management": { |
| 510 "dependencies": ["permission:management"], | 510 "dependencies": ["permission:management"], |
| 511 "contexts": ["blessed_extension"] | 511 "contexts": ["blessed_extension"] |
| 512 }, | 512 }, |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 "internal": true, | 774 "internal": true, |
| 775 "channel": "stable", | 775 "channel": "stable", |
| 776 "dependencies": ["permission:webview"], | 776 "dependencies": ["permission:webview"], |
| 777 "contexts": ["blessed_extension"] | 777 "contexts": ["blessed_extension"] |
| 778 }, | 778 }, |
| 779 "windows": { | 779 "windows": { |
| 780 "dependencies": ["api:tabs"], | 780 "dependencies": ["api:tabs"], |
| 781 "contexts": ["blessed_extension"] | 781 "contexts": ["blessed_extension"] |
| 782 } | 782 } |
| 783 } | 783 } |
| OLD | NEW |