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

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: add whitelist 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
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 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 ] 736 ]
737 }, 737 },
738 "webRequest": { 738 "webRequest": {
739 "channel": "stable", 739 "channel": "stable",
740 "extension_types": ["extension", "legacy_packaged_app"] 740 "extension_types": ["extension", "legacy_packaged_app"]
741 }, 741 },
742 "webRequestBlocking": { 742 "webRequestBlocking": {
743 "channel": "stable", 743 "channel": "stable",
744 "extension_types": ["extension", "legacy_packaged_app"] 744 "extension_types": ["extension", "legacy_packaged_app"]
745 }, 745 },
746 "webview": { 746 "webview": [{
747 "channel": "stable", 747 "channel": "stable",
748 "extension_types": ["platform_app"] 748 "extension_types": ["platform_app"]
749 } 749 }, {
750 // General support for webview in component extensions still in progress.
751 // Only allowed for whitelisted extensions until all the caveats are
752 // addressed. Tracked in crbug/285151.
753 "channel": "stable",
754 "extension_types": ["extension"],
755 "location": "component",
756 "whitelist": [
757 "mfffpogegjflfpflabcdkioaeobkgjik" // GAIA Component Extension
758 ]
759 }]
750 } 760 }
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/extensions/dispatcher.cc » ('j') | chrome/renderer/extensions/dispatcher.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698