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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 "contexts": ["blessed_extension"], | 380 "contexts": ["blessed_extension"], |
381 "dependencies": ["permission:embeddedExtensionOptions"] | 381 "dependencies": ["permission:embeddedExtensionOptions"] |
382 }, { | 382 }, { |
383 "internal": true, | 383 "internal": true, |
384 "channel": "trunk", | 384 "channel": "trunk", |
385 "contexts": ["webui"], | 385 "contexts": ["webui"], |
386 "matches": ["chrome://extensions-frame/*", "chrome://extensions/*"] | 386 "matches": ["chrome://extensions-frame/*", "chrome://extensions/*"] |
387 }], | 387 }], |
388 // This is not a real API, only here for documentation purposes. | 388 // This is not a real API, only here for documentation purposes. |
389 // See http://crbug.com/275944 for background. | 389 // See http://crbug.com/275944 for background. |
| 390 "extensionTypes": { |
| 391 "internal": true, |
| 392 "channel": "stable", |
| 393 "contexts": ["blessed_extension"] |
| 394 }, |
| 395 // This is not a real API, only here for documentation purposes. |
| 396 // See http://crbug.com/275944 for background. |
390 "extensionsManifestTypes": { | 397 "extensionsManifestTypes": { |
391 "internal": true, | 398 "internal": true, |
392 "channel": "stable", | 399 "channel": "stable", |
393 "contexts": ["blessed_extension"] | 400 "contexts": ["blessed_extension"] |
394 }, | 401 }, |
395 "feedbackPrivate": { | 402 "feedbackPrivate": { |
396 "dependencies": ["permission:feedbackPrivate"], | 403 "dependencies": ["permission:feedbackPrivate"], |
397 "contexts": ["blessed_extension"] | 404 "contexts": ["blessed_extension"] |
398 }, | 405 }, |
399 "fileBrowserHandler": { | 406 "fileBrowserHandler": { |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
847 "internal": true, | 854 "internal": true, |
848 "channel": "stable", | 855 "channel": "stable", |
849 "dependencies": ["permission:webview"], | 856 "dependencies": ["permission:webview"], |
850 "contexts": ["blessed_extension"] | 857 "contexts": ["blessed_extension"] |
851 }, | 858 }, |
852 "windows": { | 859 "windows": { |
853 "dependencies": ["api:tabs"], | 860 "dependencies": ["api:tabs"], |
854 "contexts": ["blessed_extension"] | 861 "contexts": ["blessed_extension"] |
855 } | 862 } |
856 } | 863 } |
OLD | NEW |