| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 }, | 280 }, |
| 281 "diagnostics": { | 281 "diagnostics": { |
| 282 "dependencies": ["permission:diagnostics"], | 282 "dependencies": ["permission:diagnostics"], |
| 283 "extension_types": ["platform_app"], | 283 "extension_types": ["platform_app"], |
| 284 "contexts": ["blessed_extension"] | 284 "contexts": ["blessed_extension"] |
| 285 }, | 285 }, |
| 286 "dial": { | 286 "dial": { |
| 287 "dependencies": ["permission:dial"], | 287 "dependencies": ["permission:dial"], |
| 288 "contexts": ["blessed_extension"] | 288 "contexts": ["blessed_extension"] |
| 289 }, | 289 }, |
| 290 "documentScan": { |
| 291 "platforms": ["chromeos"], |
| 292 "dependencies": ["permission:documentScan"], |
| 293 "contexts": ["blessed_extension"] |
| 294 }, |
| 290 "downloads": { | 295 "downloads": { |
| 291 "dependencies": ["permission:downloads"], | 296 "dependencies": ["permission:downloads"], |
| 292 "contexts": ["blessed_extension"] | 297 "contexts": ["blessed_extension"] |
| 293 }, | 298 }, |
| 294 "downloadsInternal": { | 299 "downloadsInternal": { |
| 295 "internal": true, | 300 "internal": true, |
| 296 "channel": "stable", | 301 "channel": "stable", |
| 297 "contexts": ["blessed_extension"] | 302 "contexts": ["blessed_extension"] |
| 298 }, | 303 }, |
| 299 "easyUnlockPrivate": { | 304 "easyUnlockPrivate": { |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 828 "internal": true, | 833 "internal": true, |
| 829 "channel": "stable", | 834 "channel": "stable", |
| 830 "dependencies": ["permission:webview"], | 835 "dependencies": ["permission:webview"], |
| 831 "contexts": ["blessed_extension"] | 836 "contexts": ["blessed_extension"] |
| 832 }, | 837 }, |
| 833 "windows": { | 838 "windows": { |
| 834 "dependencies": ["api:tabs"], | 839 "dependencies": ["api:tabs"], |
| 835 "contexts": ["blessed_extension"] | 840 "contexts": ["blessed_extension"] |
| 836 } | 841 } |
| 837 } | 842 } |
| OLD | NEW |