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

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

Issue 264743014: Move chrome.runtime to //extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 7 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 | Annotate | Revision Log
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 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 "rtcPrivate": { 749 "rtcPrivate": {
750 "channel": "stable", 750 "channel": "stable",
751 "extension_types": ["extension", "legacy_packaged_app"], 751 "extension_types": ["extension", "legacy_packaged_app"],
752 "whitelist": [ 752 "whitelist": [
753 "53041A2FA309EECED01FFC751E7399186E860B2C", // Google Talk prod 753 "53041A2FA309EECED01FFC751E7399186E860B2C", // Google Talk prod
754 "A74A4D44C7CFCD8844830E6140C8D763E12DD8F3", // Google Talk beta 754 "A74A4D44C7CFCD8844830E6140C8D763E12DD8F3", // Google Talk beta
755 "E7E2461CE072DF036CF9592740196159E2D7C089", // Google Talk alpha 755 "E7E2461CE072DF036CF9592740196159E2D7C089", // Google Talk alpha
756 "312745D9BF916161191143F6490085EEA0434997" // Google Talk debug 756 "312745D9BF916161191143F6490085EEA0434997" // Google Talk debug
757 ] 757 ]
758 }, 758 },
759 // Note: runtime is not actually a permission, but some systems check these
760 // values to verify restrictions.
761 "runtime": {
762 "channel": "stable",
763 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
764 },
765 "screenlockPrivate": { 759 "screenlockPrivate": {
766 "channel": "stable", 760 "channel": "stable",
767 "extension_types": ["platform_app"], 761 "extension_types": ["platform_app"],
768 "whitelist": [ 762 "whitelist": [
769 "lkegkdgachcnekllcdfkijonogckdnjo", // API test 763 "lkegkdgachcnekllcdfkijonogckdnjo", // API test
770 "190C131D270994E7330E9A3CD48224061CB10E2D", // dogfood 1 764 "190C131D270994E7330E9A3CD48224061CB10E2D", // dogfood 1
771 "7FDDD1C0CB0052596657FDEC92841D509DC8D404", // dogfood 2 765 "7FDDD1C0CB0052596657FDEC92841D509DC8D404", // dogfood 2
772 "E13990DC5440B6E270503DA27A35762F423725C3" // dogfood 3 766 "E13990DC5440B6E270503DA27A35762F423725C3" // dogfood 3
773 ] 767 ]
774 }, 768 },
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
989 // Only allowed for whitelisted extensions until all the caveats are 983 // Only allowed for whitelisted extensions until all the caveats are
990 // addressed. Tracked in crbug/285151. 984 // addressed. Tracked in crbug/285151.
991 "channel": "stable", 985 "channel": "stable",
992 "extension_types": ["extension"], 986 "extension_types": ["extension"],
993 "location": "component", 987 "location": "component",
994 "whitelist": [ 988 "whitelist": [
995 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension 989 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension
996 ] 990 ]
997 }] 991 }]
998 } 992 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698