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 "copresenceSocket": { | |
Ken Rockot(use gerrit already)
2014/09/30 17:26:05
I realize the restriction exists on the corpresenc
rkc
2014/10/01 19:08:24
Done.
| |
73 "dependencies": ["permission:copresence"], | |
74 "contexts": ["blessed_extension"] | |
75 }, | |
72 "dns": { | 76 "dns": { |
73 "dependencies": ["permission:dns"], | 77 "dependencies": ["permission:dns"], |
74 "contexts": ["blessed_extension"] | 78 "contexts": ["blessed_extension"] |
75 }, | 79 }, |
76 // This is not a real API, only here for documentation purposes. | 80 // This is not a real API, only here for documentation purposes. |
77 // See http://crbug.com/275944 for background. | 81 // See http://crbug.com/275944 for background. |
78 "extensionTypes": { | 82 "extensionTypes": { |
79 "internal": true, | 83 "internal": true, |
80 "channel": "stable", | 84 "channel": "stable", |
81 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 85 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
263 "internal": true, | 267 "internal": true, |
264 "dependencies": ["permission:webview"], | 268 "dependencies": ["permission:webview"], |
265 "contexts": ["blessed_extension"] | 269 "contexts": ["blessed_extension"] |
266 }, { | 270 }, { |
267 "internal": true, | 271 "internal": true, |
268 "channel": "dev", | 272 "channel": "dev", |
269 "contexts": ["webui"], | 273 "contexts": ["webui"], |
270 "matches": ["chrome://chrome-signin/*"] | 274 "matches": ["chrome://chrome-signin/*"] |
271 }] | 275 }] |
272 } | 276 } |
OLD | NEW |