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 // See c/c/e/features/* to understand this file, in particular feature.h, | 5 // See c/c/e/features/* to understand this file, in particular feature.h, |
6 // simple_feature.h, and base_feature_provider.h. | 6 // simple_feature.h, and base_feature_provider.h. |
7 | 7 |
8 { | 8 { |
9 "activityLogPrivate": { | 9 "activityLogPrivate": { |
10 "dependencies": ["permission:activityLogPrivate"], | 10 "dependencies": ["permission:activityLogPrivate"], |
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
574 }, | 574 }, |
575 "webRequest": { | 575 "webRequest": { |
576 "dependencies": ["permission:webRequest"], | 576 "dependencies": ["permission:webRequest"], |
577 "contexts": ["blessed_extension"] | 577 "contexts": ["blessed_extension"] |
578 }, | 578 }, |
579 "webRequestInternal": { | 579 "webRequestInternal": { |
580 "internal": true, | 580 "internal": true, |
581 "channel": "stable", | 581 "channel": "stable", |
582 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 582 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
583 }, | 583 }, |
| 584 "webrtcLoggingPrivate": { |
| 585 "dependencies": ["permission:webrtcLoggingPrivate"], |
| 586 "contexts": ["blessed_extension"] |
| 587 }, |
584 "webstore": { | 588 "webstore": { |
585 // Hosted apps can use the webstore API from within a blessed context. | 589 // Hosted apps can use the webstore API from within a blessed context. |
586 "channel": "stable", | 590 "channel": "stable", |
587 "extension_types": ["hosted_app"], | 591 "extension_types": ["hosted_app"], |
588 "contexts": ["blessed_extension", "web_page"], | 592 "contexts": ["blessed_extension", "web_page"], |
589 // Any webpage can use the webstore API. | 593 // Any webpage can use the webstore API. |
590 "matches": ["http://*/*", "https://*/*"] | 594 "matches": ["http://*/*", "https://*/*"] |
591 }, | 595 }, |
592 "webstorePrivate": { | 596 "webstorePrivate": { |
593 "dependencies": ["permission:webstorePrivate"], | 597 "dependencies": ["permission:webstorePrivate"], |
594 "contexts": ["blessed_extension"] | 598 "contexts": ["blessed_extension"] |
595 }, | 599 }, |
596 "webview": { | 600 "webview": { |
597 "internal": true, | 601 "internal": true, |
598 "dependencies": ["permission:webview"], | 602 "dependencies": ["permission:webview"], |
599 "contexts": ["blessed_extension"] | 603 "contexts": ["blessed_extension"] |
600 }, | 604 }, |
601 "windows": { | 605 "windows": { |
602 "dependencies": ["api:tabs"], | 606 "dependencies": ["api:tabs"], |
603 "contexts": ["blessed_extension"] | 607 "contexts": ["blessed_extension"] |
604 } | 608 } |
605 } | 609 } |
OLD | NEW |