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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 "declarativeWebRequest": { | 72 "declarativeWebRequest": { |
73 "dependencies": ["permission:declarativeWebRequest"], | 73 "dependencies": ["permission:declarativeWebRequest"], |
74 "contexts": ["blessed_extension"] | 74 "contexts": ["blessed_extension"] |
75 }, | 75 }, |
| 76 "copresenceSocket": { |
| 77 "channel" : "dev", |
| 78 "dependencies": ["permission:copresence"], |
| 79 "contexts": ["blessed_extension"] |
| 80 }, |
76 "dns": { | 81 "dns": { |
77 "dependencies": ["permission:dns"], | 82 "dependencies": ["permission:dns"], |
78 "contexts": ["blessed_extension"] | 83 "contexts": ["blessed_extension"] |
79 }, | 84 }, |
80 // This is not a real API, only here for documentation purposes. | 85 // This is not a real API, only here for documentation purposes. |
81 // See http://crbug.com/275944 for background. | 86 // See http://crbug.com/275944 for background. |
82 "extensionTypes": { | 87 "extensionTypes": { |
83 "internal": true, | 88 "internal": true, |
84 "channel": "stable", | 89 "channel": "stable", |
85 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 90 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
(...skipping 207 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 |