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

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

Issue 1015623005: chrome.settingsPrivate: Basic stub implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing nits 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 843 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 "location": "component" 854 "location": "component"
855 }, 855 },
856 "screensaver": { 856 "screensaver": {
857 "channel": "stable", 857 "channel": "stable",
858 "extension_types": ["legacy_packaged_app", "hosted_app", "platform_app"] 858 "extension_types": ["legacy_packaged_app", "hosted_app", "platform_app"]
859 }, 859 },
860 "sessions": { 860 "sessions": {
861 "channel": "stable", 861 "channel": "stable",
862 "extension_types": ["extension", "legacy_packaged_app"] 862 "extension_types": ["extension", "legacy_packaged_app"]
863 }, 863 },
864 "settingsPrivate": {
865 "channel": "trunk",
866 "extension_types": ["extension", "platform_app"],
867 "platforms": ["chromeos", "mac", "win", "linux"],
868 "whitelist": []
869 },
864 "signedInDevices": { 870 "signedInDevices": {
865 "channel": "dev", 871 "channel": "dev",
866 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] 872 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
867 }, 873 },
868 "streamsPrivate": { 874 "streamsPrivate": {
869 "channel": "stable", 875 "channel": "stable",
870 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], 876 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
871 "whitelist": [ 877 "whitelist": [
872 "787000072C6FBB934AF5A42275CDE73FC977D995", // browser_tests 878 "787000072C6FBB934AF5A42275CDE73FC977D995", // browser_tests
873 "2FC374607C2DF285634B67C64A2E356C607091C3", // QuickOffice 879 "2FC374607C2DF285634B67C64A2E356C607091C3", // QuickOffice
(...skipping 91 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