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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
468 "contexts": ["blessed_extension"] | 468 "contexts": ["blessed_extension"] |
469 }, | 469 }, |
470 "logPrivate": { | 470 "logPrivate": { |
471 "dependencies": ["permission:logPrivate"], | 471 "dependencies": ["permission:logPrivate"], |
472 "contexts": ["blessed_extension"] | 472 "contexts": ["blessed_extension"] |
473 }, | 473 }, |
474 "webcamPrivate": { | 474 "webcamPrivate": { |
475 "dependencies": ["permission:webcamPrivate"], | 475 "dependencies": ["permission:webcamPrivate"], |
476 "contexts": ["blessed_extension"] | 476 "contexts": ["blessed_extension"] |
477 }, | 477 }, |
478 "management": { | |
479 "dependencies": ["permission:management"], | |
480 "contexts": ["blessed_extension"] | |
481 }, | |
482 "management.getPermissionWarningsByManifest": { | |
483 "dependencies": [], | |
484 "channel": "stable", | |
485 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | |
486 }, | |
487 "management.getSelf": { | |
488 "dependencies": [], | |
489 "channel": "stable", | |
490 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | |
491 }, | |
492 "management.uninstallSelf": { | |
493 "dependencies": [], | |
494 "channel": "stable", | |
495 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | |
496 }, | |
497 // This is not a real API, only here for documentation purposes. | 478 // This is not a real API, only here for documentation purposes. |
498 // See http://crbug.com/275944 for background. | 479 // See http://crbug.com/275944 for background. |
499 "manifestTypes": { | 480 "manifestTypes": { |
500 "internal": true, | 481 "internal": true, |
501 "channel": "stable", | 482 "channel": "stable", |
502 "contexts": ["blessed_extension"] | 483 "contexts": ["blessed_extension"] |
503 }, | 484 }, |
504 "mediaGalleries": { | 485 "mediaGalleries": { |
505 "dependencies": ["permission:mediaGalleries"], | 486 "dependencies": ["permission:mediaGalleries"], |
506 "contexts": ["blessed_extension"] | 487 "contexts": ["blessed_extension"] |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
713 "internal": true, | 694 "internal": true, |
714 "channel": "stable", | 695 "channel": "stable", |
715 "dependencies": ["permission:webview"], | 696 "dependencies": ["permission:webview"], |
716 "contexts": ["blessed_extension"] | 697 "contexts": ["blessed_extension"] |
717 }, | 698 }, |
718 "windows": { | 699 "windows": { |
719 "dependencies": ["api:tabs"], | 700 "dependencies": ["api:tabs"], |
720 "contexts": ["blessed_extension"] | 701 "contexts": ["blessed_extension"] |
721 } | 702 } |
722 } | 703 } |
OLD | NEW |