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

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: Address kalman@'s comments. Still need tests. 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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 "extension_types": ["extension", "legacy_packaged_app"] 322 "extension_types": ["extension", "legacy_packaged_app"]
323 }, 323 },
324 "declarativeContent": { 324 "declarativeContent": {
325 "channel": "stable", 325 "channel": "stable",
326 "extension_types": ["extension"] 326 "extension_types": ["extension"]
327 }, 327 },
328 "desktopCapture": { 328 "desktopCapture": {
329 "channel": "stable", 329 "channel": "stable",
330 "extension_types": ["extension", "platform_app"] 330 "extension_types": ["extension", "platform_app"]
331 }, 331 },
332 "documentScan": {
333 "channel": "dev",
334 "extension_types": ["extension", "platform_app"]
335 },
332 "downloads": { 336 "downloads": {
333 "channel": "stable", 337 "channel": "stable",
334 "extension_types": ["extension"] 338 "extension_types": ["extension"]
335 }, 339 },
336 "downloads.open": { 340 "downloads.open": {
337 "channel": "stable", 341 "channel": "stable",
338 "extension_types": ["extension"] 342 "extension_types": ["extension"]
339 }, 343 },
340 "downloads.shelf": { 344 "downloads.shelf": {
341 "channel": "stable", 345 "channel": "stable",
(...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after
1048 "webstorePrivate": { 1052 "webstorePrivate": {
1049 "channel": "stable", 1053 "channel": "stable",
1050 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], 1054 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"],
1051 "whitelist": [ 1055 "whitelist": [
1052 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store 1056 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store
1053 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store 1057 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store
1054 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) 1058 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype)
1055 ] 1059 ]
1056 } 1060 }
1057 } 1061 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698