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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 "contexts": ["blessed_extension"] | 473 "contexts": ["blessed_extension"] |
474 }, | 474 }, |
475 "logPrivate": { | 475 "logPrivate": { |
476 "dependencies": ["permission:logPrivate"], | 476 "dependencies": ["permission:logPrivate"], |
477 "contexts": ["blessed_extension"] | 477 "contexts": ["blessed_extension"] |
478 }, | 478 }, |
479 "webcamPrivate": { | 479 "webcamPrivate": { |
480 "dependencies": ["permission:webcamPrivate"], | 480 "dependencies": ["permission:webcamPrivate"], |
481 "contexts": ["blessed_extension"] | 481 "contexts": ["blessed_extension"] |
482 }, | 482 }, |
483 "management": { | |
484 "dependencies": ["permission:management"], | |
485 "contexts": ["blessed_extension"] | |
486 }, | |
487 "management.getPermissionWarningsByManifest": { | |
488 "dependencies": [], | |
489 "channel": "stable", | |
490 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | |
491 }, | |
492 "management.getSelf": { | |
493 "dependencies": [], | |
494 "channel": "stable", | |
495 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | |
496 }, | |
497 "management.uninstallSelf": { | |
498 "dependencies": [], | |
499 "channel": "stable", | |
500 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | |
501 }, | |
502 // This is not a real API, only here for documentation purposes. | 483 // This is not a real API, only here for documentation purposes. |
503 // See http://crbug.com/275944 for background. | 484 // See http://crbug.com/275944 for background. |
504 "manifestTypes": { | 485 "manifestTypes": { |
505 "internal": true, | 486 "internal": true, |
506 "channel": "stable", | 487 "channel": "stable", |
507 "contexts": ["blessed_extension"] | 488 "contexts": ["blessed_extension"] |
508 }, | 489 }, |
509 "mediaGalleries": { | 490 "mediaGalleries": { |
510 "dependencies": ["permission:mediaGalleries"], | 491 "dependencies": ["permission:mediaGalleries"], |
511 "contexts": ["blessed_extension"] | 492 "contexts": ["blessed_extension"] |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
718 "internal": true, | 699 "internal": true, |
719 "channel": "stable", | 700 "channel": "stable", |
720 "dependencies": ["permission:webview"], | 701 "dependencies": ["permission:webview"], |
721 "contexts": ["blessed_extension"] | 702 "contexts": ["blessed_extension"] |
722 }, | 703 }, |
723 "windows": { | 704 "windows": { |
724 "dependencies": ["api:tabs"], | 705 "dependencies": ["api:tabs"], |
725 "contexts": ["blessed_extension"] | 706 "contexts": ["blessed_extension"] |
726 } | 707 } |
727 } | 708 } |
OLD | NEW |