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

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

Issue 399783002: Begin whitelisting specific extensions for global key registration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nits; rebase Created 6 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 | 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 // This features file defines permissions for extension APIs implemented 5 // This features file defines permissions for extension APIs implemented
6 // under src/chrome. 6 // under src/chrome.
7 // See extensions/common/features/* to understand this file, in particular 7 // See extensions/common/features/* to understand this file, in particular
8 // feature.h, simple_feature.h, and base_feature_provider.h. 8 // feature.h, simple_feature.h, and base_feature_provider.h.
9 9
10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: 10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash:
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 "channel": "stable", 266 "channel": "stable",
267 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], 267 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"],
268 // CloudPrint 268 // CloudPrint
269 "whitelist": ["99060B01DE911EB85FD630C8BA6320C9186CA3AB"] 269 "whitelist": ["99060B01DE911EB85FD630C8BA6320C9186CA3AB"]
270 }, 270 },
271 "commandLinePrivate": { 271 "commandLinePrivate": {
272 "channel": "stable", 272 "channel": "stable",
273 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], 273 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
274 "location": "component" 274 "location": "component"
275 }, 275 },
276 "commands.accessibility": {
277 "channel": "stable",
278 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
279 "whitelist": [
280 "2FCBCE08B34CCA1728A85F1EFBD9A34DD2558B2E",
281 "75C7F4B720314B6CB1B5817CD86089DB95CD2461"
282 ]
283 },
276 "contentSettings": { 284 "contentSettings": {
277 "channel": "stable", 285 "channel": "stable",
278 "extension_types": ["extension", "legacy_packaged_app"] 286 "extension_types": ["extension", "legacy_packaged_app"]
279 }, 287 },
280 "contextMenus": { 288 "contextMenus": {
281 "channel": "stable", 289 "channel": "stable",
282 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] 290 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
283 }, 291 },
284 "cookies": { 292 "cookies": {
285 "channel": "stable", 293 "channel": "stable",
(...skipping 873 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 // Only allowed for whitelisted extensions until all the caveats are 1167 // Only allowed for whitelisted extensions until all the caveats are
1160 // addressed. Tracked in crbug/285151. 1168 // addressed. Tracked in crbug/285151.
1161 "channel": "stable", 1169 "channel": "stable",
1162 "extension_types": ["extension"], 1170 "extension_types": ["extension"],
1163 "location": "component", 1171 "location": "component",
1164 "whitelist": [ 1172 "whitelist": [
1165 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension 1173 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension
1166 ] 1174 ]
1167 }] 1175 }]
1168 } 1176 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698