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 // 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 }, | 243 }, |
244 "diagnostics": { | 244 "diagnostics": { |
245 "dependencies": ["permission:diagnostics"], | 245 "dependencies": ["permission:diagnostics"], |
246 "extension_types": ["platform_app"], | 246 "extension_types": ["platform_app"], |
247 "contexts": ["blessed_extension"] | 247 "contexts": ["blessed_extension"] |
248 }, | 248 }, |
249 "dial": { | 249 "dial": { |
250 "dependencies": ["permission:dial"], | 250 "dependencies": ["permission:dial"], |
251 "contexts": ["blessed_extension"] | 251 "contexts": ["blessed_extension"] |
252 }, | 252 }, |
253 "documentScan": { | |
254 "platforms": ["chromeos"], | |
255 "dependencies": ["permission:documentScan"], | |
256 "contexts": ["blessed_extension"] | |
257 }, | |
258 "downloads": { | 253 "downloads": { |
259 "dependencies": ["permission:downloads"], | 254 "dependencies": ["permission:downloads"], |
260 "contexts": ["blessed_extension"] | 255 "contexts": ["blessed_extension"] |
261 }, | 256 }, |
262 "downloadsInternal": { | 257 "downloadsInternal": { |
263 "internal": true, | 258 "internal": true, |
264 "channel": "stable", | 259 "channel": "stable", |
265 "contexts": ["blessed_extension"] | 260 "contexts": ["blessed_extension"] |
266 }, | 261 }, |
267 "easyUnlockPrivate": { | 262 "easyUnlockPrivate": { |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
718 "internal": true, | 713 "internal": true, |
719 "channel": "stable", | 714 "channel": "stable", |
720 "dependencies": ["permission:webview"], | 715 "dependencies": ["permission:webview"], |
721 "contexts": ["blessed_extension"] | 716 "contexts": ["blessed_extension"] |
722 }, | 717 }, |
723 "windows": { | 718 "windows": { |
724 "dependencies": ["api:tabs"], | 719 "dependencies": ["api:tabs"], |
725 "contexts": ["blessed_extension"] | 720 "contexts": ["blessed_extension"] |
726 } | 721 } |
727 } | 722 } |
OLD | NEW |