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": "trunk", | 373 "channel": "dev", |
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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 "internal": true, | 790 "internal": true, |
791 "channel": "stable", | 791 "channel": "stable", |
792 "dependencies": ["permission:webview"], | 792 "dependencies": ["permission:webview"], |
793 "contexts": ["blessed_extension"] | 793 "contexts": ["blessed_extension"] |
794 }, | 794 }, |
795 "windows": { | 795 "windows": { |
796 "dependencies": ["api:tabs"], | 796 "dependencies": ["api:tabs"], |
797 "contexts": ["blessed_extension"] | 797 "contexts": ["blessed_extension"] |
798 } | 798 } |
799 } | 799 } |
OLD | NEW |