OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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/chrome. | 5 // This features file defines extension APIs implemented under src/chrome. |
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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "content_script", | 89 "content_script", |
90 "blessed_web_page", | 90 "blessed_web_page", |
91 "web_page" | 91 "web_page" |
92 ] | 92 ] |
93 }, | 93 }, |
94 "appviewTag": { | 94 "appviewTag": { |
95 "internal": true, | 95 "internal": true, |
96 "dependencies": ["permission:appview"], | 96 "dependencies": ["permission:appview"], |
97 "contexts": ["blessed_extension"] | 97 "contexts": ["blessed_extension"] |
98 }, | 98 }, |
99 "audioModem": { | |
100 "dependencies": ["permission:audioModem"], | |
101 "contexts": ["blessed_extension"] | |
102 }, | |
103 "autofillPrivate": [{ | 99 "autofillPrivate": [{ |
104 "dependencies": ["permission:autofillPrivate"], | 100 "dependencies": ["permission:autofillPrivate"], |
105 "contexts": ["blessed_extension"] | 101 "contexts": ["blessed_extension"] |
106 }, { | 102 }, { |
107 "channel": "trunk", | 103 "channel": "trunk", |
108 "contexts": ["webui"], | 104 "contexts": ["webui"], |
109 "matches": [ | 105 "matches": [ |
110 "chrome://md-settings/*", | 106 "chrome://md-settings/*", |
111 "chrome://settings/*", | 107 "chrome://settings/*", |
112 "chrome://settings-frame/*" | 108 "chrome://settings-frame/*" |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 }, | 258 }, |
263 "contextMenusInternal": { | 259 "contextMenusInternal": { |
264 "internal": true, | 260 "internal": true, |
265 "channel": "stable", | 261 "channel": "stable", |
266 "contexts": ["blessed_extension"] | 262 "contexts": ["blessed_extension"] |
267 }, | 263 }, |
268 "cookies": { | 264 "cookies": { |
269 "dependencies": ["permission:cookies"], | 265 "dependencies": ["permission:cookies"], |
270 "contexts": ["blessed_extension"] | 266 "contexts": ["blessed_extension"] |
271 }, | 267 }, |
272 "copresencePrivate": { | |
273 "dependencies": ["permission:copresencePrivate"], | |
274 "contexts": ["blessed_extension"] | |
275 }, | |
276 "cryptotokenPrivate": { | 268 "cryptotokenPrivate": { |
277 "dependencies": ["permission:cryptotokenPrivate"], | 269 "dependencies": ["permission:cryptotokenPrivate"], |
278 "contexts": ["blessed_extension"] | 270 "contexts": ["blessed_extension"] |
279 }, | 271 }, |
280 "dashboardPrivate": [{ | 272 "dashboardPrivate": [{ |
281 "channel": "stable", | 273 "channel": "stable", |
282 "contexts": ["blessed_web_page", "web_page"], | 274 "contexts": ["blessed_web_page", "web_page"], |
283 "matches": ["https://chrome.google.com/*"] | 275 "matches": ["https://chrome.google.com/*"] |
284 }, { | 276 }, { |
285 "channel": "stable", | 277 "channel": "stable", |
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
847 "internal": true, | 839 "internal": true, |
848 "channel": "stable", | 840 "channel": "stable", |
849 "dependencies": ["permission:webview"], | 841 "dependencies": ["permission:webview"], |
850 "contexts": ["blessed_extension"] | 842 "contexts": ["blessed_extension"] |
851 }, | 843 }, |
852 "windows": { | 844 "windows": { |
853 "dependencies": ["api:tabs"], | 845 "dependencies": ["api:tabs"], |
854 "contexts": ["blessed_extension"] | 846 "contexts": ["blessed_extension"] |
855 } | 847 } |
856 } | 848 } |
OLD | NEW |