| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 }, | 363 }, |
| 364 "extension.sendRequest": { | 364 "extension.sendRequest": { |
| 365 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 365 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
| 366 }, | 366 }, |
| 367 "extensionOptionsInternal": [{ | 367 "extensionOptionsInternal": [{ |
| 368 "internal": true, | 368 "internal": true, |
| 369 "contexts": ["blessed_extension"], | 369 "contexts": ["blessed_extension"], |
| 370 "dependencies": ["permission:embeddedExtensionOptions"] | 370 "dependencies": ["permission:embeddedExtensionOptions"] |
| 371 }, { | 371 }, { |
| 372 "internal": true, | 372 "internal": true, |
| 373 "channel": "dev", | 373 "channel": "trunk", |
| 374 "contexts": ["webui"], | 374 "contexts": ["webui"], |
| 375 "matches": ["chrome://extensions-frame/*", "chrome://extensions/*"] | 375 "matches": ["chrome://extensions-frame/*", "chrome://extensions/*"] |
| 376 }], | 376 }], |
| 377 // This is not a real API, only here for documentation purposes. | 377 // This is not a real API, only here for documentation purposes. |
| 378 // See http://crbug.com/275944 for background. | 378 // See http://crbug.com/275944 for background. |
| 379 "extensionsManifestTypes": { | 379 "extensionsManifestTypes": { |
| 380 "internal": true, | 380 "internal": true, |
| 381 "channel": "stable", | 381 "channel": "stable", |
| 382 "contexts": ["blessed_extension"] | 382 "contexts": ["blessed_extension"] |
| 383 }, | 383 }, |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 "internal": true, | 774 "internal": true, |
| 775 "channel": "stable", | 775 "channel": "stable", |
| 776 "dependencies": ["permission:webview"], | 776 "dependencies": ["permission:webview"], |
| 777 "contexts": ["blessed_extension"] | 777 "contexts": ["blessed_extension"] |
| 778 }, | 778 }, |
| 779 "windows": { | 779 "windows": { |
| 780 "dependencies": ["api:tabs"], | 780 "dependencies": ["api:tabs"], |
| 781 "contexts": ["blessed_extension"] | 781 "contexts": ["blessed_extension"] |
| 782 } | 782 } |
| 783 } | 783 } |
| OLD | NEW |