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

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

Issue 880073002: Networking.config: Implementation of the NetworkingConfigService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264", // Google Cast Stable 750 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264", // Google Cast Stable
751 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development 751 "7AE714FFD394E073F0294CFA134C9F91DB5FBAA4", // CCD Development
752 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing 752 "C7DA3A55C2355F994D3FDDAD120B426A0DF63843", // CCD Testing
753 "75E3CFFFC530582C583E4690EF97C70B9C8423B7", // CCD Release 753 "75E3CFFFC530582C583E4690EF97C70B9C8423B7", // CCD Release
754 "4F25792AF1AA7483936DE29C07806F203C7170A0", // http://crbug.com/407693 754 "4F25792AF1AA7483936DE29C07806F203C7170A0", // http://crbug.com/407693
755 "BD8781D757D830FC2E85470A1B6E8A718B7EE0D9", // http://crbug.com/407693 755 "BD8781D757D830FC2E85470A1B6E8A718B7EE0D9", // http://crbug.com/407693
756 "4AC2B6C63C6480D150DFDA13E4A5956EB1D0DDBB", // http://crbug.com/407693 756 "4AC2B6C63C6480D150DFDA13E4A5956EB1D0DDBB", // http://crbug.com/407693
757 "81986D4F846CEDDDB962643FA501D1780DD441BB" // http://crbug.com/407693 757 "81986D4F846CEDDDB962643FA501D1780DD441BB" // http://crbug.com/407693
758 ] 758 ]
759 }, 759 },
760 "networking.config": {
761 "channel": "dev",
762 "platforms": ["chromeos"],
763 "extension_types": ["extension"]
764 },
760 "notificationProvider": { 765 "notificationProvider": {
761 "channel": "trunk", 766 "channel": "trunk",
762 "extension_types": ["extension", "platform_app"] 767 "extension_types": ["extension"]
763 }, 768 },
764 "notifications": { 769 "notifications": {
765 // The chrome.notifications functionality listed in notifications.idl is 770 // The chrome.notifications functionality listed in notifications.idl is
766 // available only to extension/platform_app types. The implementation of 771 // available only to extension/platform_app types. The implementation of
767 // that functionality enforces that restriction in 772 // that functionality enforces that restriction in
768 // NotificationsApiFunction::IsNotificationsApiAvailable(). This is more 773 // NotificationsApiFunction::IsNotificationsApiAvailable(). This is more
769 // complicated than other namespaces because we are sharing the 774 // complicated than other namespaces because we are sharing the
770 // notifications permission with WebKit/Blink notifications. 775 // notifications permission with WebKit/Blink notifications.
771 "channel": "stable", 776 "channel": "stable",
772 "extension_types": [ 777 "extension_types": [
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
1022 "webstorePrivate": { 1027 "webstorePrivate": {
1023 "channel": "stable", 1028 "channel": "stable",
1024 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"], 1029 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"],
1025 "whitelist": [ 1030 "whitelist": [
1026 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store 1031 "B44D08FD98F1523ED5837D78D0A606EA9D6206E5", // Web Store
1027 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store 1032 "2653F6F6C39BC6EEBD36A09AFB92A19782FF7EB4", // Enterprise Web Store
1028 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype) 1033 "2779FA8B45841D61A37207CCFAC9CB393964FE5B" // Login Proxy (prototype)
1029 ] 1034 ]
1030 } 1035 }
1031 } 1036 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698