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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 "contexts": ["blessed_extension"] | 99 "contexts": ["blessed_extension"] |
100 }, | 100 }, |
101 "bluetoothSocket": { | 101 "bluetoothSocket": { |
102 "dependencies": ["manifest:bluetooth"], | 102 "dependencies": ["manifest:bluetooth"], |
103 "contexts": ["blessed_extension"] | 103 "contexts": ["blessed_extension"] |
104 }, | 104 }, |
105 "declarativeWebRequest": { | 105 "declarativeWebRequest": { |
106 "dependencies": ["permission:declarativeWebRequest"], | 106 "dependencies": ["permission:declarativeWebRequest"], |
107 "contexts": ["blessed_extension"] | 107 "contexts": ["blessed_extension"] |
108 }, | 108 }, |
109 "copresenceEndpoints": { | |
110 "channel" : "canary", | |
111 "dependencies": ["permission:copresence"], | |
112 "contexts": ["blessed_extension"] | |
113 }, | |
114 "diagnostics": { | 109 "diagnostics": { |
115 "dependencies": ["permission:diagnostics"], | 110 "dependencies": ["permission:diagnostics"], |
116 "extension_types": ["platform_app"], | 111 "extension_types": ["platform_app"], |
117 "contexts": ["blessed_extension"] | 112 "contexts": ["blessed_extension"] |
118 }, | 113 }, |
119 "dns": { | 114 "dns": { |
120 "dependencies": ["permission:dns"], | 115 "dependencies": ["permission:dns"], |
121 "contexts": ["blessed_extension"] | 116 "contexts": ["blessed_extension"] |
122 }, | 117 }, |
123 // This is not a real API, only here for documentation purposes. | 118 // This is not a real API, only here for documentation purposes. |
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 }], | 429 }], |
435 "webViewRequest": [{ | 430 "webViewRequest": [{ |
436 "dependencies": ["permission:webview"], | 431 "dependencies": ["permission:webview"], |
437 "contexts": ["blessed_extension"] | 432 "contexts": ["blessed_extension"] |
438 }, { | 433 }, { |
439 "channel": "stable", | 434 "channel": "stable", |
440 "contexts": ["webui"], | 435 "contexts": ["webui"], |
441 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] | 436 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] |
442 }] | 437 }] |
443 } | 438 } |
OLD | NEW |