| 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 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 ] | 759 ] |
| 760 }, | 760 }, |
| 761 "webRequest": { | 761 "webRequest": { |
| 762 "channel": "stable", | 762 "channel": "stable", |
| 763 "extension_types": ["extension", "legacy_packaged_app"] | 763 "extension_types": ["extension", "legacy_packaged_app"] |
| 764 }, | 764 }, |
| 765 "webRequestBlocking": { | 765 "webRequestBlocking": { |
| 766 "channel": "stable", | 766 "channel": "stable", |
| 767 "extension_types": ["extension", "legacy_packaged_app"] | 767 "extension_types": ["extension", "legacy_packaged_app"] |
| 768 }, | 768 }, |
| 769 "webview": { | 769 "webview": [{ |
| 770 "channel": "stable", | 770 "channel": "stable", |
| 771 "extension_types": ["platform_app"] | 771 "extension_types": ["platform_app"] |
| 772 } | 772 }, { |
| 773 // General support for webview in component extensions still in progress. |
| 774 // Only allowed for whitelisted extensions until all the caveats are |
| 775 // addressed. Tracked in crbug/285151. |
| 776 "channel": "stable", |
| 777 "extension_types": ["extension"], |
| 778 "location": "component", |
| 779 "whitelist": [ |
| 780 "mfffpogegjflfpflabcdkioaeobkgjik" // GAIA Component Extension |
| 781 ] |
| 782 }] |
| 773 } | 783 } |
| OLD | NEW |