| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "location": "component" | 133 "location": "component" |
| 134 }, | 134 }, |
| 135 "bookmarks.import": { | 135 "bookmarks.import": { |
| 136 "extension_types": ["extension"], | 136 "extension_types": ["extension"], |
| 137 "location": "component" | 137 "location": "component" |
| 138 }, | 138 }, |
| 139 "brailleDisplayPrivate": { | 139 "brailleDisplayPrivate": { |
| 140 "dependencies": ["permission:brailleDisplayPrivate"], | 140 "dependencies": ["permission:brailleDisplayPrivate"], |
| 141 "contexts": ["blessed_extension"] | 141 "contexts": ["blessed_extension"] |
| 142 }, | 142 }, |
| 143 "browser": { |
| 144 "dependencies": ["permission:browser"], |
| 145 "contexts": ["blessed_extension"] |
| 146 }, |
| 143 "browserAction": { | 147 "browserAction": { |
| 144 "dependencies": ["manifest:browser_action"], | 148 "dependencies": ["manifest:browser_action"], |
| 145 "contexts": ["blessed_extension"] | 149 "contexts": ["blessed_extension"] |
| 146 }, | 150 }, |
| 147 // This API is whitelisted on stable and should not be enabled for a wider | 151 // This API is whitelisted on stable and should not be enabled for a wider |
| 148 // audience without resolving security issues raised in API proposal and | 152 // audience without resolving security issues raised in API proposal and |
| 149 // review (https://codereview.chromium.org/25305002). | 153 // review (https://codereview.chromium.org/25305002). |
| 150 "browserAction.openPopup": [{ | 154 "browserAction.openPopup": [{ |
| 151 "channel": "dev", | 155 "channel": "dev", |
| 152 "dependencies": ["manifest:browser_action"], | 156 "dependencies": ["manifest:browser_action"], |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 "internal": true, | 792 "internal": true, |
| 789 "channel": "stable", | 793 "channel": "stable", |
| 790 "dependencies": ["permission:webview"], | 794 "dependencies": ["permission:webview"], |
| 791 "contexts": ["blessed_extension"] | 795 "contexts": ["blessed_extension"] |
| 792 }, | 796 }, |
| 793 "windows": { | 797 "windows": { |
| 794 "dependencies": ["api:tabs"], | 798 "dependencies": ["api:tabs"], |
| 795 "contexts": ["blessed_extension"] | 799 "contexts": ["blessed_extension"] |
| 796 } | 800 } |
| 797 } | 801 } |
| OLD | NEW |