| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 ], | 163 ], |
| 164 "matches": ["<all_urls>"] | 164 "matches": ["<all_urls>"] |
| 165 }, | 165 }, |
| 166 "runtime.setUninstallURL": { | 166 "runtime.setUninstallURL": { |
| 167 "channel": "dev" | 167 "channel": "dev" |
| 168 }, | 168 }, |
| 169 "serial": { | 169 "serial": { |
| 170 "dependencies": ["permission:serial"], | 170 "dependencies": ["permission:serial"], |
| 171 "contexts": ["blessed_extension"] | 171 "contexts": ["blessed_extension"] |
| 172 }, | 172 }, |
| 173 "shellPrivate": { |
| 174 "channel": "trunk", |
| 175 "extension_types": ["platform_app"], |
| 176 "contexts": ["blessed_extension"] |
| 177 }, |
| 173 "socket": { | 178 "socket": { |
| 174 "dependencies": ["permission:socket"], | 179 "dependencies": ["permission:socket"], |
| 175 "contexts": ["blessed_extension"] | 180 "contexts": ["blessed_extension"] |
| 176 }, | 181 }, |
| 177 "sockets.tcp": { | 182 "sockets.tcp": { |
| 178 "dependencies": ["manifest:sockets"], | 183 "dependencies": ["manifest:sockets"], |
| 179 "contexts": ["blessed_extension"] | 184 "contexts": ["blessed_extension"] |
| 180 }, | 185 }, |
| 181 "sockets.tcpServer": { | 186 "sockets.tcpServer": { |
| 182 "dependencies": ["manifest:sockets"], | 187 "dependencies": ["manifest:sockets"], |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 }], | 298 }], |
| 294 "webViewRequest": [{ | 299 "webViewRequest": [{ |
| 295 "dependencies": ["permission:webview"], | 300 "dependencies": ["permission:webview"], |
| 296 "contexts": ["blessed_extension"] | 301 "contexts": ["blessed_extension"] |
| 297 }, { | 302 }, { |
| 298 "channel": "stable", | 303 "channel": "stable", |
| 299 "contexts": ["webui"], | 304 "contexts": ["webui"], |
| 300 "matches": ["chrome://chrome-signin/*"] | 305 "matches": ["chrome://chrome-signin/*"] |
| 301 }] | 306 }] |
| 302 } | 307 } |
| OLD | NEW |