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

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

Issue 267863005: Adds syncedNotificationsPrivate API IDL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 // See c/c/e/features/* to understand this file, in particular feature.h, 5 // See c/c/e/features/* to understand this file, in particular feature.h,
6 // simple_feature.h, and base_feature_provider.h. 6 // simple_feature.h, and base_feature_provider.h.
7 7
8 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: 8 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash:
9 // 9 //
10 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ 10 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \
(...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 // The connectivity diagnostic utility is a component extension that is 816 // The connectivity diagnostic utility is a component extension that is
817 // used to try to provide suggestions on how to fix connection issues. It 817 // used to try to provide suggestions on how to fix connection issues. It
818 // should be the only non-app allowed to use the socket API. 818 // should be the only non-app allowed to use the socket API.
819 "32A1BA997F8AB8DE29ED1BA94AAF00CF2A3FEFA7" 819 "32A1BA997F8AB8DE29ED1BA94AAF00CF2A3FEFA7"
820 ] 820 ]
821 }], 821 }],
822 "syncFileSystem": { 822 "syncFileSystem": {
823 "channel": "stable", 823 "channel": "stable",
824 "extension_types": ["platform_app"] 824 "extension_types": ["platform_app"]
825 }, 825 },
826 "syncedNotificationsPrivate": {
827 "channel": "dev",
not at google - send to devlin 2014/05/02 21:37:38 restrict unimplemented APIs to trunk not dev
dewittj 2014/05/03 00:07:49 Done.
828 "extension_types": ["platform_app"]
not at google - send to devlin 2014/05/02 21:37:38 you will need a whitelist for this eventually? cou
dewittj 2014/05/03 00:07:49 I would rather not have a whitelist so we can hack
not at google - send to devlin 2014/05/03 00:13:59 Open on trunk is fine. Damage there seems very lim
829 },
826 "systemIndicator": { 830 "systemIndicator": {
827 "channel": "dev", 831 "channel": "dev",
828 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] 832 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
829 }, 833 },
830 "storage": { 834 "storage": {
831 "channel": "stable", 835 "channel": "stable",
832 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], 836 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
833 "min_manifest_version": 2 837 "min_manifest_version": 2
834 }, 838 },
835 "system.cpu": { 839 "system.cpu": {
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
1013 // Only allowed for whitelisted extensions until all the caveats are 1017 // Only allowed for whitelisted extensions until all the caveats are
1014 // addressed. Tracked in crbug/285151. 1018 // addressed. Tracked in crbug/285151.
1015 "channel": "stable", 1019 "channel": "stable",
1016 "extension_types": ["extension"], 1020 "extension_types": ["extension"],
1017 "location": "component", 1021 "location": "component",
1018 "whitelist": [ 1022 "whitelist": [
1019 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension 1023 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension
1020 ] 1024 ]
1021 }] 1025 }]
1022 } 1026 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698