Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(601)

Side by Side Diff: chrome/common/extensions/api/_permission_features.json

Issue 23653012: Support webview tag in component extension (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove duplicate call for enableCustomElement Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/renderer/extensions/dispatcher.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/extensions/dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698