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

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

Issue 22407017: Remove whitelist restriction for Shared Modules on dev channel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unit test + rebase Created 7 years, 4 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
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 "app": { 9 "app": {
10 "channel": "stable", 10 "channel": "stable",
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 "location": "component" 139 "location": "component"
140 }, 140 },
141 { 141 {
142 "channel": "stable", 142 "channel": "stable",
143 "extension_types": ["packaged_app", "platform_app"], 143 "extension_types": ["packaged_app", "platform_app"],
144 "whitelist": [ 144 "whitelist": [
145 "nmmhkkegccagdldgiimedpiccmgmieda" 145 "nmmhkkegccagdldgiimedpiccmgmieda"
146 ] 146 ]
147 } 147 }
148 ], 148 ],
149 "export": { 149 "export": [
150 "channel": "stable", 150 {
151 "extension_types": ["shared_module"], 151 "channel": "stable",
152 "whitelist": [ 152 "extension_types": ["shared_module"],
153 "gpcckkmippodnppallflahfabmeilgjg", // browser and unit tests 153 "whitelist": [
154 "6EAED1924DB611B6EEF2A664BD077BE7EAD33B8F" 154 "6EAED1924DB611B6EEF2A664BD077BE7EAD33B8F",
155 ] 155 "4EB74897CB187C7633357C2FE832E0AD6A44883A"
156 }, 156 ]
157 },
158 {
159 "channel": "dev",
160 "extension_types": ["shared_module"]
161 }
162 ],
157 "externally_connectable": { 163 "externally_connectable": {
158 "channel": "stable", 164 "channel": "stable",
159 "extension_types": [ 165 "extension_types": [
160 "extension", "hosted_app", "packaged_app", "platform_app" 166 "extension", "hosted_app", "packaged_app", "platform_app"
161 ] 167 ]
162 }, 168 },
163 "file_browser_handlers": { 169 "file_browser_handlers": {
164 "channel": "stable", 170 "channel": "stable",
165 "extension_types": ["extension", "packaged_app"] 171 "extension_types": ["extension", "packaged_app"]
166 }, 172 },
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 "channel": "stable", 357 "channel": "stable",
352 "extension_types": "all" 358 "extension_types": "all"
353 }, 359 },
354 "web_accessible_resources": { 360 "web_accessible_resources": {
355 "channel": "stable", 361 "channel": "stable",
356 "extension_types": [ 362 "extension_types": [
357 "extension", "packaged_app", "hosted_app" 363 "extension", "packaged_app", "hosted_app"
358 ] 364 ]
359 } 365 }
360 } 366 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698