OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/extensions. | 5 // This features file defines extension APIs implemented under src/extensions. |
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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 "management.getSelf": { | 178 "management.getSelf": { |
179 "dependencies": [], | 179 "dependencies": [], |
180 "channel": "stable", | 180 "channel": "stable", |
181 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 181 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
182 }, | 182 }, |
183 "management.uninstallSelf": { | 183 "management.uninstallSelf": { |
184 "dependencies": [], | 184 "dependencies": [], |
185 "channel": "stable", | 185 "channel": "stable", |
186 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 186 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
187 }, | 187 }, |
| 188 "mimeHandlerPrivate": { |
| 189 "dependencies": ["manifest:mime_types_handler"], |
| 190 "contexts": ["blessed_extension"] |
| 191 }, |
188 "mojoPrivate": { | 192 "mojoPrivate": { |
189 "contexts": ["blessed_extension"], | 193 "contexts": ["blessed_extension"], |
190 "channel": "stable", | 194 "channel": "stable", |
191 "extension_types": ["platform_app", "extension"], | 195 "extension_types": ["platform_app", "extension"], |
192 "whitelist": [ | 196 "whitelist": [ |
193 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569 | 197 "63ED55E43214C211F82122ED56407FF1A807F2A3" // http://crbug.com/448569 |
194 ] | 198 ] |
195 }, | 199 }, |
196 "power": { | 200 "power": { |
197 "dependencies": ["permission:power"], | 201 "dependencies": ["permission:power"], |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 }], | 419 }], |
416 "webViewRequest": [{ | 420 "webViewRequest": [{ |
417 "dependencies": ["permission:webview"], | 421 "dependencies": ["permission:webview"], |
418 "contexts": ["blessed_extension"] | 422 "contexts": ["blessed_extension"] |
419 }, { | 423 }, { |
420 "channel": "stable", | 424 "channel": "stable", |
421 "contexts": ["webui"], | 425 "contexts": ["webui"], |
422 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] | 426 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] |
423 }] | 427 }] |
424 } | 428 } |
OLD | NEW |