| 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 }, |
| 253 "downloads": { | 258 "downloads": { |
| 254 "dependencies": ["permission:downloads"], | 259 "dependencies": ["permission:downloads"], |
| 255 "contexts": ["blessed_extension"] | 260 "contexts": ["blessed_extension"] |
| 256 }, | 261 }, |
| 257 "downloadsInternal": { | 262 "downloadsInternal": { |
| 258 "internal": true, | 263 "internal": true, |
| 259 "channel": "stable", | 264 "channel": "stable", |
| 260 "contexts": ["blessed_extension"] | 265 "contexts": ["blessed_extension"] |
| 261 }, | 266 }, |
| 262 "easyUnlockPrivate": { | 267 "easyUnlockPrivate": { |
| (...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 "internal": true, | 718 "internal": true, |
| 714 "channel": "stable", | 719 "channel": "stable", |
| 715 "dependencies": ["permission:webview"], | 720 "dependencies": ["permission:webview"], |
| 716 "contexts": ["blessed_extension"] | 721 "contexts": ["blessed_extension"] |
| 717 }, | 722 }, |
| 718 "windows": { | 723 "windows": { |
| 719 "dependencies": ["api:tabs"], | 724 "dependencies": ["api:tabs"], |
| 720 "contexts": ["blessed_extension"] | 725 "contexts": ["blessed_extension"] |
| 721 } | 726 } |
| 722 } | 727 } |
| OLD | NEW |