| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 chrome/common/extensions/api/_features.md to understand this file, as | 6 // See chrome/common/extensions/api/_features.md to understand this file, as |
| 7 // well as feature.h, simple_feature.h, and base_feature_provider.h. | 7 // well as 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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 "mimeHandlerViewGuestInternal": { | 604 "mimeHandlerViewGuestInternal": { |
| 605 "internal": true, | 605 "internal": true, |
| 606 "contexts": "all", | 606 "contexts": "all", |
| 607 "channel": "stable", | 607 "channel": "stable", |
| 608 "matches": ["<all_urls>"] | 608 "matches": ["<all_urls>"] |
| 609 }, | 609 }, |
| 610 "musicManagerPrivate": { | 610 "musicManagerPrivate": { |
| 611 "dependencies": ["permission:musicManagerPrivate"], | 611 "dependencies": ["permission:musicManagerPrivate"], |
| 612 "contexts": ["blessed_extension"] | 612 "contexts": ["blessed_extension"] |
| 613 }, | 613 }, |
| 614 "notificationProvider": { | |
| 615 "dependencies": ["permission:notificationProvider"], | |
| 616 "contexts": ["blessed_extension"] | |
| 617 }, | |
| 618 "notifications": { | 614 "notifications": { |
| 619 "dependencies": ["permission:notifications"], | 615 "dependencies": ["permission:notifications"], |
| 620 "contexts": ["blessed_extension"] | 616 "contexts": ["blessed_extension"] |
| 621 }, | 617 }, |
| 622 "omnibox": { | 618 "omnibox": { |
| 623 "dependencies": ["manifest:omnibox"], | 619 "dependencies": ["manifest:omnibox"], |
| 624 "contexts": ["blessed_extension"] | 620 "contexts": ["blessed_extension"] |
| 625 }, | 621 }, |
| 626 "pageAction": { | 622 "pageAction": { |
| 627 "dependencies": ["manifest:page_action"], | 623 "dependencies": ["manifest:page_action"], |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 "internal": true, | 829 "internal": true, |
| 834 "channel": "stable", | 830 "channel": "stable", |
| 835 "dependencies": ["permission:webview"], | 831 "dependencies": ["permission:webview"], |
| 836 "contexts": ["blessed_extension"] | 832 "contexts": ["blessed_extension"] |
| 837 }, | 833 }, |
| 838 "windows": { | 834 "windows": { |
| 839 "dependencies": ["api:tabs"], | 835 "dependencies": ["api:tabs"], |
| 840 "contexts": ["blessed_extension"] | 836 "contexts": ["blessed_extension"] |
| 841 } | 837 } |
| 842 } | 838 } |
| OLD | NEW |