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

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

Issue 286933006: Implement a JavaScript API for document scanning (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: IDL indicates multiple images can be returned Created 6 years, 2 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 // 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 "declarativeWebRequest": [ 368 "declarativeWebRequest": [
369 { 369 {
370 "channel": "beta", 370 "channel": "beta",
371 "extension_types": ["extension", "legacy_packaged_app"] 371 "extension_types": ["extension", "legacy_packaged_app"]
372 } 372 }
373 ], 373 ],
374 "desktopCapture": { 374 "desktopCapture": {
375 "channel": "stable", 375 "channel": "stable",
376 "extension_types": ["extension", "platform_app"] 376 "extension_types": ["extension", "platform_app"]
377 }, 377 },
378 "documentScan": {
379 "channel": "dev",
380 "extension_types": ["extension", "platform_app"]
381 },
378 "downloads": { 382 "downloads": {
379 "channel": "stable", 383 "channel": "stable",
380 "extension_types": ["extension"] 384 "extension_types": ["extension"]
381 }, 385 },
382 "downloads.open": { 386 "downloads.open": {
383 "channel": "stable", 387 "channel": "stable",
384 "extension_types": ["extension"] 388 "extension_types": ["extension"]
385 }, 389 },
386 "downloads.shelf": { 390 "downloads.shelf": {
387 "channel": "stable", 391 "channel": "stable",
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 // Only allowed for whitelisted extensions until all the caveats are 1163 // Only allowed for whitelisted extensions until all the caveats are
1160 // addressed. Tracked in crbug/285151. 1164 // addressed. Tracked in crbug/285151.
1161 "channel": "stable", 1165 "channel": "stable",
1162 "extension_types": ["extension"], 1166 "extension_types": ["extension"],
1163 "location": "component", 1167 "location": "component",
1164 "whitelist": [ 1168 "whitelist": [
1165 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension 1169 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension
1166 ] 1170 ]
1167 }] 1171 }]
1168 } 1172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698