Chromium Code Reviews| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 62 "app.currentWindowInternal": { | 62 "app.currentWindowInternal": { |
| 63 "noparent": true, | 63 "noparent": true, |
| 64 "internal": true, | 64 "internal": true, |
| 65 "channel": "stable", | 65 "channel": "stable", |
| 66 "contexts": ["blessed_extension"] | 66 "contexts": ["blessed_extension"] |
| 67 }, | 67 }, |
| 68 "app.currentWindowInternal.setShape": { | 68 "app.currentWindowInternal.setShape": { |
| 69 "dependencies": ["permission:app.window.shape"], | 69 "dependencies": ["permission:app.window.shape"], |
| 70 "contexts": ["blessed_extension"] | 70 "contexts": ["blessed_extension"] |
| 71 }, | 71 }, |
| 72 // TODO(jamescook): Should bluetooth be here? | |
|
Ken Rockot(use gerrit already)
2014/10/03 20:42:36
Yes, it looks like it should be.
| |
| 72 "declarativeWebRequest": { | 73 "declarativeWebRequest": { |
| 73 "dependencies": ["permission:declarativeWebRequest"], | 74 "dependencies": ["permission:declarativeWebRequest"], |
| 74 "contexts": ["blessed_extension"] | 75 "contexts": ["blessed_extension"] |
| 75 }, | 76 }, |
| 76 "dns": { | 77 "dns": { |
| 77 "dependencies": ["permission:dns"], | 78 "dependencies": ["permission:dns"], |
| 78 "contexts": ["blessed_extension"] | 79 "contexts": ["blessed_extension"] |
| 79 }, | 80 }, |
| 80 // This is not a real API, only here for documentation purposes. | 81 // This is not a real API, only here for documentation purposes. |
| 81 // See http://crbug.com/275944 for background. | 82 // See http://crbug.com/275944 for background. |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 163 ], | 164 ], |
| 164 "matches": ["<all_urls>"] | 165 "matches": ["<all_urls>"] |
| 165 }, | 166 }, |
| 166 "runtime.setUninstallURL": { | 167 "runtime.setUninstallURL": { |
| 167 "channel": "dev" | 168 "channel": "dev" |
| 168 }, | 169 }, |
| 169 "serial": { | 170 "serial": { |
| 170 "dependencies": ["permission:serial"], | 171 "dependencies": ["permission:serial"], |
| 171 "contexts": ["blessed_extension"] | 172 "contexts": ["blessed_extension"] |
| 172 }, | 173 }, |
| 174 "shellPrivate": { | |
| 175 "channel": "trunk", | |
| 176 "extension_types": ["platform_app"], | |
| 177 "contexts": ["blessed_extension"] | |
| 178 }, | |
| 173 "socket": { | 179 "socket": { |
| 174 "dependencies": ["permission:socket"], | 180 "dependencies": ["permission:socket"], |
| 175 "contexts": ["blessed_extension"] | 181 "contexts": ["blessed_extension"] |
| 176 }, | 182 }, |
| 177 "sockets.tcp": { | 183 "sockets.tcp": { |
| 178 "dependencies": ["manifest:sockets"], | 184 "dependencies": ["manifest:sockets"], |
| 179 "contexts": ["blessed_extension"] | 185 "contexts": ["blessed_extension"] |
| 180 }, | 186 }, |
| 181 "sockets.tcpServer": { | 187 "sockets.tcpServer": { |
| 182 "dependencies": ["manifest:sockets"], | 188 "dependencies": ["manifest:sockets"], |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 293 }], | 299 }], |
| 294 "webViewRequest": [{ | 300 "webViewRequest": [{ |
| 295 "dependencies": ["permission:webview"], | 301 "dependencies": ["permission:webview"], |
| 296 "contexts": ["blessed_extension"] | 302 "contexts": ["blessed_extension"] |
| 297 }, { | 303 }, { |
| 298 "channel": "stable", | 304 "channel": "stable", |
| 299 "contexts": ["webui"], | 305 "contexts": ["webui"], |
| 300 "matches": ["chrome://chrome-signin/*"] | 306 "matches": ["chrome://chrome-signin/*"] |
| 301 }] | 307 }] |
| 302 } | 308 } |
| OLD | NEW |