| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 "devtools.network": { | 255 "devtools.network": { |
| 256 "nocompile": true, | 256 "nocompile": true, |
| 257 "dependencies": ["manifest:devtools_page"], | 257 "dependencies": ["manifest:devtools_page"], |
| 258 "contexts": ["blessed_extension"] | 258 "contexts": ["blessed_extension"] |
| 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 "diagnostics": { | |
| 266 "dependencies": ["permission:diagnostics"], | |
| 267 "extension_types": ["platform_app"], | |
| 268 "contexts": ["blessed_extension"] | |
| 269 }, | |
| 270 "dial": { | 265 "dial": { |
| 271 "dependencies": ["permission:dial"], | 266 "dependencies": ["permission:dial"], |
| 272 "contexts": ["blessed_extension"] | 267 "contexts": ["blessed_extension"] |
| 273 }, | 268 }, |
| 274 "documentScan": { | 269 "documentScan": { |
| 275 "platforms": ["chromeos"], | 270 "platforms": ["chromeos"], |
| 276 "dependencies": ["permission:documentScan"], | 271 "dependencies": ["permission:documentScan"], |
| 277 "contexts": ["blessed_extension"] | 272 "contexts": ["blessed_extension"] |
| 278 }, | 273 }, |
| 279 "downloads": { | 274 "downloads": { |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 698 "internal": true, | 693 "internal": true, |
| 699 "channel": "stable", | 694 "channel": "stable", |
| 700 "dependencies": ["permission:webview"], | 695 "dependencies": ["permission:webview"], |
| 701 "contexts": ["blessed_extension"] | 696 "contexts": ["blessed_extension"] |
| 702 }, | 697 }, |
| 703 "windows": { | 698 "windows": { |
| 704 "dependencies": ["api:tabs"], | 699 "dependencies": ["api:tabs"], |
| 705 "contexts": ["blessed_extension"] | 700 "contexts": ["blessed_extension"] |
| 706 } | 701 } |
| 707 } | 702 } |
| OLD | NEW |