| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 }, | 240 }, |
| 241 "mimeHandlerPrivate": { | 241 "mimeHandlerPrivate": { |
| 242 "dependencies": ["manifest:mime_types_handler"], | 242 "dependencies": ["manifest:mime_types_handler"], |
| 243 "contexts": ["blessed_extension"] | 243 "contexts": ["blessed_extension"] |
| 244 }, | 244 }, |
| 245 "mojoPrivate": { | 245 "mojoPrivate": { |
| 246 "contexts": ["blessed_extension"], | 246 "contexts": ["blessed_extension"], |
| 247 "channel": "stable", | 247 "channel": "stable", |
| 248 "extension_types": ["platform_app", "extension"], | 248 "extension_types": ["platform_app", "extension"], |
| 249 "whitelist": [ | 249 "whitelist": [ |
| 250 "EF2AB692559EA97C3BBDEA018A8C45F92457BD4E", // http://crbug.com/448569 | 250 "226CF815E39A363090A1E547D53063472B8279FA", // http://crbug.com/574889 |
| 251 "C17CD9E6868D7B9C67926E0EC612EA25C768418F", | 251 "C17CD9E6868D7B9C67926E0EC612EA25C768418F", // http://crbug.com/448569 |
| 252 "A45DABDB47A31CC812E5490AB748C7D05E2D32E9", | 252 "A45DABDB47A31CC812E5490AB748C7D05E2D32E9", |
| 253 "BFEE2E3B80BE21A645E63E9346DFC383E7CB3BDA", | 253 "BFEE2E3B80BE21A645E63E9346DFC383E7CB3BDA", |
| 254 "63ED55E43214C211F82122ED56407FF1A807F2A3" | 254 "63ED55E43214C211F82122ED56407FF1A807F2A3" |
| 255 ] | 255 ] |
| 256 }, | 256 }, |
| 257 "networking.config": { | 257 "networking.config": { |
| 258 "dependencies": ["permission:networking.config"], | 258 "dependencies": ["permission:networking.config"], |
| 259 "contexts": ["blessed_extension"] | 259 "contexts": ["blessed_extension"] |
| 260 }, | 260 }, |
| 261 "networkingPrivate": [{ | 261 "networkingPrivate": [{ |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 }, { | 466 }, { |
| 467 "channel": "stable", | 467 "channel": "stable", |
| 468 "contexts": ["webui"], | 468 "contexts": ["webui"], |
| 469 "matches": [ | 469 "matches": [ |
| 470 "chrome://chrome-signin/*", | 470 "chrome://chrome-signin/*", |
| 471 "chrome://media-router/*", | 471 "chrome://media-router/*", |
| 472 "chrome://oobe/*" | 472 "chrome://oobe/*" |
| 473 ] | 473 ] |
| 474 }] | 474 }] |
| 475 } | 475 } |
| OLD | NEW |