| 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 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "management.getSelf": { | 223 "management.getSelf": { |
| 224 "dependencies": [], | 224 "dependencies": [], |
| 225 "channel": "stable", | 225 "channel": "stable", |
| 226 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 226 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 227 }, | 227 }, |
| 228 "management.uninstallSelf": { | 228 "management.uninstallSelf": { |
| 229 "dependencies": [], | 229 "dependencies": [], |
| 230 "channel": "stable", | 230 "channel": "stable", |
| 231 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 231 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 232 }, | 232 }, |
| 233 "mimeHandlerPrivate": { | 233 "mojoPrivate": [{ |
| 234 "dependencies": ["manifest:mime_types_handler"], | |
| 235 "contexts": ["blessed_extension"] | |
| 236 }, | |
| 237 "mojoPrivate": { | |
| 238 "contexts": ["blessed_extension"], | 234 "contexts": ["blessed_extension"], |
| 239 "channel": "stable", | 235 "channel": "stable", |
| 240 "extension_types": ["platform_app", "extension"], | 236 "extension_types": ["platform_app", "extension"], |
| 241 "whitelist": [ | 237 "whitelist": [ |
| 242 "226CF815E39A363090A1E547D53063472B8279FA", // http://crbug.com/574889 | 238 "226CF815E39A363090A1E547D53063472B8279FA", // http://crbug.com/574889 |
| 243 "C17CD9E6868D7B9C67926E0EC612EA25C768418F", // http://crbug.com/448569 | 239 "C17CD9E6868D7B9C67926E0EC612EA25C768418F", // http://crbug.com/448569 |
| 244 "A45DABDB47A31CC812E5490AB748C7D05E2D32E9", | 240 "A45DABDB47A31CC812E5490AB748C7D05E2D32E9", |
| 245 "BFEE2E3B80BE21A645E63E9346DFC383E7CB3BDA", | 241 "BFEE2E3B80BE21A645E63E9346DFC383E7CB3BDA", |
| 246 "63ED55E43214C211F82122ED56407FF1A807F2A3" | 242 "63ED55E43214C211F82122ED56407FF1A807F2A3" |
| 247 ] | 243 ] |
| 248 }, | 244 }, { |
| 245 "dependencies": ["manifest:mime_types_handler"], |
| 246 "contexts": ["blessed_extension"] |
| 247 }], |
| 249 "networking.config": { | 248 "networking.config": { |
| 250 "dependencies": ["permission:networking.config"], | 249 "dependencies": ["permission:networking.config"], |
| 251 "contexts": ["blessed_extension"] | 250 "contexts": ["blessed_extension"] |
| 252 }, | 251 }, |
| 253 "networkingPrivate": [{ | 252 "networkingPrivate": [{ |
| 254 "dependencies": ["permission:networkingPrivate"], | 253 "dependencies": ["permission:networkingPrivate"], |
| 255 "contexts": ["blessed_extension"] | 254 "contexts": ["blessed_extension"] |
| 256 }, { | 255 }, { |
| 257 "channel": "stable", | 256 "channel": "stable", |
| 258 "contexts": ["webui"], | 257 "contexts": ["webui"], |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 }, { | 466 }, { |
| 468 "channel": "stable", | 467 "channel": "stable", |
| 469 "contexts": ["webui"], | 468 "contexts": ["webui"], |
| 470 "matches": [ | 469 "matches": [ |
| 471 "chrome://chrome-signin/*", | 470 "chrome://chrome-signin/*", |
| 472 "chrome://media-router/*", | 471 "chrome://media-router/*", |
| 473 "chrome://oobe/*" | 472 "chrome://oobe/*" |
| 474 ] | 473 ] |
| 475 }] | 474 }] |
| 476 } | 475 } |
| OLD | NEW |