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

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

Issue 444513005: Add the Copresence API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 "extension_types": ["extension", "legacy_packaged_app"] 306 "extension_types": ["extension", "legacy_packaged_app"]
307 }, 307 },
308 "contextMenus": { 308 "contextMenus": {
309 "channel": "stable", 309 "channel": "stable",
310 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] 310 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
311 }, 311 },
312 "cookies": { 312 "cookies": {
313 "channel": "stable", 313 "channel": "stable",
314 "extension_types": ["extension", "legacy_packaged_app"] 314 "extension_types": ["extension", "legacy_packaged_app"]
315 }, 315 },
316 "copresence": [
317 {
318 "channel": "dev",
319 "extension_types": ["extension", "platform_app"]
320 },
321 {
322 "channel": "stable",
323 "extension_types": ["extension", "platform_app"],
324 "whitelist": [
325 "AFA728615D3A82D4017BDECEE86978543194D198", // http://crbug.com/387999
326 "0C0426C12F94156F330FFAF346A976BA8878DE78", // http://crbug.com/387999
327 "1C93BD3CF875F4A73C0B2A163BB8FBDA8B8B3D80", // http://crbug.com/389230
328 "A3BC37E2148AC4E99BE4B16AF9D42DD1E592BBBE", // http://crbug.com/389230
329 "E703483CEF33DEC18B4B6DD84B5C776FB9182BDB", // http://crbug.com/389230
330 "307E96539209F95A1A8740C713E6998A73657D96" // http://crbug.com/389230
331 ]
332 }
333 ],
316 "copresencePrivate": { 334 "copresencePrivate": {
317 "channel": "stable", 335 "channel": "stable",
318 "extension_types": ["extension"], 336 "extension_types": ["extension"],
319 "location": "component", 337 "location": "component",
320 "whitelist": [ 338 "whitelist": [
321 "AFA728615D3A82D4017BDECEE86978543194D198" // Whispernet Proxy 339 "AFA728615D3A82D4017BDECEE86978543194D198" // Whispernet Proxy
322 ] 340 ]
323 }, 341 },
324 "diagnostics": [ 342 "diagnostics": [
325 { 343 {
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
1132 // Only allowed for whitelisted extensions until all the caveats are 1150 // Only allowed for whitelisted extensions until all the caveats are
1133 // addressed. Tracked in crbug/285151. 1151 // addressed. Tracked in crbug/285151.
1134 "channel": "stable", 1152 "channel": "stable",
1135 "extension_types": ["extension"], 1153 "extension_types": ["extension"],
1136 "location": "component", 1154 "location": "component",
1137 "whitelist": [ 1155 "whitelist": [
1138 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension 1156 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension
1139 ] 1157 ]
1140 }] 1158 }]
1141 } 1159 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698