OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 // See c/c/e/features/* to understand this file, in particular feature.h, | 5 // See c/c/e/features/* to understand this file, in particular feature.h, |
6 // simple_feature.h, and base_feature_provider.h. | 6 // simple_feature.h, and base_feature_provider.h. |
7 | 7 |
8 { | 8 { |
9 "activityLogPrivate": { | 9 "activityLogPrivate": { |
10 "dependencies": ["permission:activityLogPrivate"], | 10 "dependencies": ["permission:activityLogPrivate"], |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 }, | 229 }, |
230 "extension.onRequest": { | 230 "extension.onRequest": { |
231 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 231 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
232 }, | 232 }, |
233 "extension.sendNativeMessage": { | 233 "extension.sendNativeMessage": { |
234 "dependencies": ["permission:nativeMessaging"] | 234 "dependencies": ["permission:nativeMessaging"] |
235 }, | 235 }, |
236 "extension.sendRequest": { | 236 "extension.sendRequest": { |
237 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 237 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
238 }, | 238 }, |
| 239 "extfs": { |
| 240 "dependencies": ["permission:extfs"], |
| 241 "contexts": ["blessed_extension"] |
| 242 }, |
239 "fileBrowserHandler": { | 243 "fileBrowserHandler": { |
240 "platform": "chromeos", | 244 "platform": "chromeos", |
241 "dependencies": ["permission:fileBrowserHandler"], | 245 "dependencies": ["permission:fileBrowserHandler"], |
242 "contexts": ["blessed_extension"] | 246 "contexts": ["blessed_extension"] |
243 }, | 247 }, |
244 "fileBrowserHandlerInternal": { | 248 "fileBrowserHandlerInternal": { |
245 "internal": true, | 249 "internal": true, |
246 "platform": "chromeos", | 250 "platform": "chromeos", |
247 "channel": "stable", | 251 "channel": "stable", |
248 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 252 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 }, | 552 }, |
549 "webview": { | 553 "webview": { |
550 "dependencies": ["permission:webview"], | 554 "dependencies": ["permission:webview"], |
551 "contexts": ["blessed_extension"] | 555 "contexts": ["blessed_extension"] |
552 }, | 556 }, |
553 "windows": { | 557 "windows": { |
554 "dependencies": ["permission:tabs"], | 558 "dependencies": ["permission:tabs"], |
555 "contexts": ["blessed_extension"] | 559 "contexts": ["blessed_extension"] |
556 } | 560 } |
557 } | 561 } |
OLD | NEW |