| 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 // See c/c/e/features/* to understand this file, in particular feature.h, | 5 // See c/c/e/features/* to understand this file, in particular feature.h, |
| 6 // simple_feature.h, and base_feature_provider.h. | 6 // simple_feature.h, and base_feature_provider.h. |
| 7 // | 7 // |
| 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
| 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
| 10 | 10 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 "location": "component" | 136 "location": "component" |
| 137 }, | 137 }, |
| 138 "bookmarks.import": { | 138 "bookmarks.import": { |
| 139 "extension_types": ["extension"], | 139 "extension_types": ["extension"], |
| 140 "location": "component" | 140 "location": "component" |
| 141 }, | 141 }, |
| 142 "brailleDisplayPrivate": { | 142 "brailleDisplayPrivate": { |
| 143 "dependencies": ["permission:brailleDisplayPrivate"], | 143 "dependencies": ["permission:brailleDisplayPrivate"], |
| 144 "contexts": ["blessed_extension"] | 144 "contexts": ["blessed_extension"] |
| 145 }, | 145 }, |
| 146 "browser": { |
| 147 "dependencies": ["permission:browser"], |
| 148 "contexts": ["blessed_extension"] |
| 149 }, |
| 146 "browserAction": { | 150 "browserAction": { |
| 147 "dependencies": ["manifest:browser_action"], | 151 "dependencies": ["manifest:browser_action"], |
| 148 "contexts": ["blessed_extension"] | 152 "contexts": ["blessed_extension"] |
| 149 }, | 153 }, |
| 150 // This API is whitelisted on stable and should not be enabled for a wider | 154 // This API is whitelisted on stable and should not be enabled for a wider |
| 151 // audience without resolving security issues raised in API proposal and | 155 // audience without resolving security issues raised in API proposal and |
| 152 // review (https://codereview.chromium.org/25305002). | 156 // review (https://codereview.chromium.org/25305002). |
| 153 "browserAction.openPopup": [{ | 157 "browserAction.openPopup": [{ |
| 154 "channel": "dev", | 158 "channel": "dev", |
| 155 "dependencies": ["manifest:browser_action"], | 159 "dependencies": ["manifest:browser_action"], |
| (...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 "internal": true, | 821 "internal": true, |
| 818 "channel": "stable", | 822 "channel": "stable", |
| 819 "dependencies": ["permission:webview"], | 823 "dependencies": ["permission:webview"], |
| 820 "contexts": ["blessed_extension"] | 824 "contexts": ["blessed_extension"] |
| 821 }, | 825 }, |
| 822 "windows": { | 826 "windows": { |
| 823 "dependencies": ["api:tabs"], | 827 "dependencies": ["api:tabs"], |
| 824 "contexts": ["blessed_extension"] | 828 "contexts": ["blessed_extension"] |
| 825 } | 829 } |
| 826 } | 830 } |
| OLD | NEW |