| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 ], | 197 ], |
| 198 "matches": ["<all_urls>"] | 198 "matches": ["<all_urls>"] |
| 199 }, | 199 }, |
| 200 "runtime.setUninstallURL": { | 200 "runtime.setUninstallURL": { |
| 201 "channel": "dev" | 201 "channel": "dev" |
| 202 }, | 202 }, |
| 203 "serial": { | 203 "serial": { |
| 204 "dependencies": ["permission:serial"], | 204 "dependencies": ["permission:serial"], |
| 205 "contexts": ["blessed_extension"] | 205 "contexts": ["blessed_extension"] |
| 206 }, | 206 }, |
| 207 "shellPrivate": { | |
| 208 "channel": "trunk", | |
| 209 "extension_types": ["platform_app"], | |
| 210 "contexts": ["blessed_extension"] | |
| 211 }, | |
| 212 "socket": { | 207 "socket": { |
| 213 "dependencies": ["permission:socket"], | 208 "dependencies": ["permission:socket"], |
| 214 "contexts": ["blessed_extension"] | 209 "contexts": ["blessed_extension"] |
| 215 }, | 210 }, |
| 216 "sockets.tcp": { | 211 "sockets.tcp": { |
| 217 "dependencies": ["manifest:sockets"], | 212 "dependencies": ["manifest:sockets"], |
| 218 "contexts": ["blessed_extension"] | 213 "contexts": ["blessed_extension"] |
| 219 }, | 214 }, |
| 220 "sockets.tcpServer": { | 215 "sockets.tcpServer": { |
| 221 "dependencies": ["manifest:sockets"], | 216 "dependencies": ["manifest:sockets"], |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 }], | 329 }], |
| 335 "webViewRequest": [{ | 330 "webViewRequest": [{ |
| 336 "dependencies": ["permission:webview"], | 331 "dependencies": ["permission:webview"], |
| 337 "contexts": ["blessed_extension"] | 332 "contexts": ["blessed_extension"] |
| 338 }, { | 333 }, { |
| 339 "channel": "stable", | 334 "channel": "stable", |
| 340 "contexts": ["webui"], | 335 "contexts": ["webui"], |
| 341 "matches": ["chrome://chrome-signin/*"] | 336 "matches": ["chrome://chrome-signin/*"] |
| 342 }] | 337 }] |
| 343 } | 338 } |
| OLD | NEW |