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

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

Issue 985533004: Implement chrome.fileSystem.requestFileSystem(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed kiosk mode. Created 5 years, 9 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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 "extension_types": ["extension"], 439 "extension_types": ["extension"],
440 "whitelist": [ 440 "whitelist": [
441 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice 441 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice
442 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal 442 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal
443 "12E618C3C6E97495AAECF2AC12DEB082353241C6", // QO component extension 443 "12E618C3C6E97495AAECF2AC12DEB082353241C6", // QO component extension
444 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 444 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900
445 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444 445 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444
446 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9" // http://crbug.com/371562 446 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9" // http://crbug.com/371562
447 ] 447 ]
448 }], 448 }],
449 "fileSystem.requestFileSystem": [{
450 "channel": "dev",
451 "extension_types": ["platform_app"],
452 "location": "component",
453 "platforms": ["chromeos"]
454 }],
449 "fileSystemProvider": { 455 "fileSystemProvider": {
450 "channel": "stable", 456 "channel": "stable",
451 "extension_types": ["extension", "platform_app"], 457 "extension_types": ["extension", "platform_app"],
452 "platforms": ["chromeos"] 458 "platforms": ["chromeos"]
453 }, 459 },
454 "firstRunPrivate": { 460 "firstRunPrivate": {
455 "channel": "stable", 461 "channel": "stable",
456 "extension_types": ["platform_app"], 462 "extension_types": ["platform_app"],
457 "location": "component", 463 "location": "component",
458 "platforms": ["chromeos"] 464 "platforms": ["chromeos"]
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
965 }, 971 },
966 "webstorePrivate": { 972 "webstorePrivate": {
967 "channel": "stable", 973 "channel": "stable",
968 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], 974 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"],
969 "whitelist": [ 975 "whitelist": [
970 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store 976 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store
971 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4" // Enterprise Web Store 977 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4" // Enterprise Web Store
972 ] 978 ]
973 } 979 }
974 } 980 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698