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

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

Issue 1968083004: Implement the private API for quick unlock. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Address comments Created 4 years, 6 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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after
859 }, { 859 }, {
860 "channel": "stable", 860 "channel": "stable",
861 "extension_types": ["platform_app"], 861 "extension_types": ["platform_app"],
862 "whitelist": [ 862 "whitelist": [
863 "11B478CEC461C766A2DC1E5BEEB7970AE06DC9C2", // http://crbug.com/439526 863 "11B478CEC461C766A2DC1E5BEEB7970AE06DC9C2", // http://crbug.com/439526
864 "0EFB879311E9EFBB7C45251F89EC655711B1F6ED", // http://crbug.com/439526 864 "0EFB879311E9EFBB7C45251F89EC655711B1F6ED", // http://crbug.com/439526
865 "9193D3A51E2FE33B496CDA53EA330423166E7F02", // http://crbug.com/439526 865 "9193D3A51E2FE33B496CDA53EA330423166E7F02", // http://crbug.com/439526
866 "F9119B8B18C7C82B51E7BC6FF816B694F2EC3E89" // http://crbug.com/439526 866 "F9119B8B18C7C82B51E7BC6FF816B694F2EC3E89" // http://crbug.com/439526
867 ] 867 ]
868 }], 868 }],
869 "quickUnlockPrivate": [{
870 "channel": "stable",
871 "extension_types": ["extension"],
872 "platforms": ["chromeos"],
873 "whitelist": [
874 "E5226FF4463679C128886DF68FED2BA5E19C7835" // API test
875 ]
876 }],
869 "resourcesPrivate": { 877 "resourcesPrivate": {
870 "channel": "stable", 878 "channel": "stable",
871 "extension_types": [ 879 "extension_types": [
872 "extension", "legacy_packaged_app", "platform_app" 880 "extension", "legacy_packaged_app", "platform_app"
873 ], 881 ],
874 "location": "component" 882 "location": "component"
875 }, 883 },
876 "rtcPrivate": { 884 "rtcPrivate": {
877 "channel": "stable", 885 "channel": "stable",
878 "extension_types": ["extension", "legacy_packaged_app"], 886 "extension_types": ["extension", "legacy_packaged_app"],
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
1040 "channel": "stable", 1048 "channel": "stable",
1041 "extension_types": ["platform_app"], 1049 "extension_types": ["platform_app"],
1042 "platforms": ["chromeos"], 1050 "platforms": ["chromeos"],
1043 "whitelist": [ 1051 "whitelist": [
1044 "A948368FC53BE437A55FEB414106E207925482F5", // Files app 1052 "A948368FC53BE437A55FEB414106E207925482F5", // Files app
1045 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player 1053 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player
1046 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests 1054 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests
1047 ] 1055 ]
1048 } 1056 }
1049 } 1057 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698