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

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: Rebase 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 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 }, { 861 }, {
862 "channel": "stable", 862 "channel": "stable",
863 "extension_types": ["platform_app"], 863 "extension_types": ["platform_app"],
864 "whitelist": [ 864 "whitelist": [
865 "11B478CEC461C766A2DC1E5BEEB7970AE06DC9C2", // http://crbug.com/439526 865 "11B478CEC461C766A2DC1E5BEEB7970AE06DC9C2", // http://crbug.com/439526
866 "0EFB879311E9EFBB7C45251F89EC655711B1F6ED", // http://crbug.com/439526 866 "0EFB879311E9EFBB7C45251F89EC655711B1F6ED", // http://crbug.com/439526
867 "9193D3A51E2FE33B496CDA53EA330423166E7F02", // http://crbug.com/439526 867 "9193D3A51E2FE33B496CDA53EA330423166E7F02", // http://crbug.com/439526
868 "F9119B8B18C7C82B51E7BC6FF816B694F2EC3E89" // http://crbug.com/439526 868 "F9119B8B18C7C82B51E7BC6FF816B694F2EC3E89" // http://crbug.com/439526
869 ] 869 ]
870 }], 870 }],
871 "quickUnlockPrivate": [{
872 "channel": "trunk",
Devlin 2016/05/31 22:58:38 Doesn't this mean that the api tests will fail on
jdufault 2016/06/01 00:07:36 I've changed it to stable.
873 "extension_types": ["extension"],
874 "platforms": ["chromeos"],
875 "whitelist": [
876 "E5226FF4463679C128886DF68FED2BA5E19C7835" // API test
877 ]
878 }],
871 "resourcesPrivate": { 879 "resourcesPrivate": {
872 "channel": "stable", 880 "channel": "stable",
873 "extension_types": [ 881 "extension_types": [
874 "extension", "legacy_packaged_app", "platform_app" 882 "extension", "legacy_packaged_app", "platform_app"
875 ], 883 ],
876 "location": "component" 884 "location": "component"
877 }, 885 },
878 "rtcPrivate": { 886 "rtcPrivate": {
879 "channel": "stable", 887 "channel": "stable",
880 "extension_types": ["extension", "legacy_packaged_app"], 888 "extension_types": ["extension", "legacy_packaged_app"],
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
1042 "channel": "stable", 1050 "channel": "stable",
1043 "extension_types": ["platform_app"], 1051 "extension_types": ["platform_app"],
1044 "platforms": ["chromeos"], 1052 "platforms": ["chromeos"],
1045 "whitelist": [ 1053 "whitelist": [
1046 "A948368FC53BE437A55FEB414106E207925482F5", // Files app 1054 "A948368FC53BE437A55FEB414106E207925482F5", // Files app
1047 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player 1055 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player
1048 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests 1056 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests
1049 ] 1057 ]
1050 } 1058 }
1051 } 1059 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698