| 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 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 "contexts": ["blessed_extension"] | 574 "contexts": ["blessed_extension"] |
| 575 }, | 575 }, |
| 576 "metricsPrivate": { | 576 "metricsPrivate": { |
| 577 "dependencies": ["permission:metricsPrivate"], | 577 "dependencies": ["permission:metricsPrivate"], |
| 578 "contexts": ["blessed_extension"] | 578 "contexts": ["blessed_extension"] |
| 579 }, | 579 }, |
| 580 "mdns": { | 580 "mdns": { |
| 581 "dependencies": ["permission:mdns"], | 581 "dependencies": ["permission:mdns"], |
| 582 "contexts": ["blessed_extension"] | 582 "contexts": ["blessed_extension"] |
| 583 }, | 583 }, |
| 584 "mimeHandlerViewGuestInternal": { |
| 585 "internal": true, |
| 586 "contexts": "all", |
| 587 "channel": "dev", |
| 588 "matches": ["<all_urls>"] |
| 589 }, |
| 584 "musicManagerPrivate": { | 590 "musicManagerPrivate": { |
| 585 "dependencies": ["permission:musicManagerPrivate"], | 591 "dependencies": ["permission:musicManagerPrivate"], |
| 586 "contexts": ["blessed_extension"] | 592 "contexts": ["blessed_extension"] |
| 587 }, | 593 }, |
| 588 "networkingPrivate": { | 594 "networkingPrivate": { |
| 589 "dependencies": ["permission:networkingPrivate"], | 595 "dependencies": ["permission:networkingPrivate"], |
| 590 "contexts": ["blessed_extension"] | 596 "contexts": ["blessed_extension"] |
| 591 }, | 597 }, |
| 592 "notificationProvider": { | 598 "notificationProvider": { |
| 593 "dependencies": ["permission:notificationProvider"], | 599 "dependencies": ["permission:notificationProvider"], |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 "internal": true, | 853 "internal": true, |
| 848 "channel": "stable", | 854 "channel": "stable", |
| 849 "dependencies": ["permission:webview"], | 855 "dependencies": ["permission:webview"], |
| 850 "contexts": ["blessed_extension"] | 856 "contexts": ["blessed_extension"] |
| 851 }, | 857 }, |
| 852 "windows": { | 858 "windows": { |
| 853 "dependencies": ["api:tabs"], | 859 "dependencies": ["api:tabs"], |
| 854 "contexts": ["blessed_extension"] | 860 "contexts": ["blessed_extension"] |
| 855 } | 861 } |
| 856 } | 862 } |
| OLD | NEW |