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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 }, | 259 }, |
260 "devtools.panels": { | 260 "devtools.panels": { |
261 "nocompile": true, | 261 "nocompile": true, |
262 "dependencies": ["manifest:devtools_page"], | 262 "dependencies": ["manifest:devtools_page"], |
263 "contexts": ["blessed_extension"] | 263 "contexts": ["blessed_extension"] |
264 }, | 264 }, |
265 "dial": { | 265 "dial": { |
266 "dependencies": ["permission:dial"], | 266 "dependencies": ["permission:dial"], |
267 "contexts": ["blessed_extension"] | 267 "contexts": ["blessed_extension"] |
268 }, | 268 }, |
269 "documentScan": { | |
270 "platforms": ["chromeos"], | |
271 "dependencies": ["permission:documentScan"], | |
272 "contexts": ["blessed_extension"] | |
273 }, | |
274 "downloads": { | 269 "downloads": { |
275 "dependencies": ["permission:downloads"], | 270 "dependencies": ["permission:downloads"], |
276 "contexts": ["blessed_extension"] | 271 "contexts": ["blessed_extension"] |
277 }, | 272 }, |
278 "downloadsInternal": { | 273 "downloadsInternal": { |
279 "internal": true, | 274 "internal": true, |
280 "channel": "stable", | 275 "channel": "stable", |
281 "contexts": ["blessed_extension"] | 276 "contexts": ["blessed_extension"] |
282 }, | 277 }, |
283 "easyUnlockPrivate": { | 278 "easyUnlockPrivate": { |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
701 "internal": true, | 696 "internal": true, |
702 "channel": "stable", | 697 "channel": "stable", |
703 "dependencies": ["permission:webview"], | 698 "dependencies": ["permission:webview"], |
704 "contexts": ["blessed_extension"] | 699 "contexts": ["blessed_extension"] |
705 }, | 700 }, |
706 "windows": { | 701 "windows": { |
707 "dependencies": ["api:tabs"], | 702 "dependencies": ["api:tabs"], |
708 "contexts": ["blessed_extension"] | 703 "contexts": ["blessed_extension"] |
709 } | 704 } |
710 } | 705 } |
OLD | NEW |