| 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 "activeTab": { | 9 "activeTab": { |
| 10 "channel": "stable", | 10 "channel": "stable", |
| (...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 ] | 727 ] |
| 728 }, | 728 }, |
| 729 "webRequest": { | 729 "webRequest": { |
| 730 "channel": "stable", | 730 "channel": "stable", |
| 731 "extension_types": ["extension", "legacy_packaged_app"] | 731 "extension_types": ["extension", "legacy_packaged_app"] |
| 732 }, | 732 }, |
| 733 "webRequestBlocking": { | 733 "webRequestBlocking": { |
| 734 "channel": "stable", | 734 "channel": "stable", |
| 735 "extension_types": ["extension", "legacy_packaged_app"] | 735 "extension_types": ["extension", "legacy_packaged_app"] |
| 736 }, | 736 }, |
| 737 "webview": { | 737 "webview": [{ |
| 738 "channel": "stable", | 738 "channel": "stable", |
| 739 "extension_types": ["platform_app"] | 739 "extension_types": ["platform_app"] |
| 740 } | 740 }, { |
| 741 // General support for webview in component extensions still in progress. |
| 742 // Only allowed for whitelisted extensions until all the caveats are |
| 743 // addressed. Tracked in crbug/285151. |
| 744 "channel": "stable", |
| 745 "extension_types": ["extension"], |
| 746 "location": "component", |
| 747 "whitelist": [ |
| 748 "mfffpogegjflfpflabcdkioaeobkgjik" // GAIA Component Extension |
| 749 ] |
| 750 }] |
| 741 } | 751 } |
| OLD | NEW |