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

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

Issue 356673003: Notification Provider API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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 781 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 // available only to extension/platform_app types. The implementation of 792 // available only to extension/platform_app types. The implementation of
793 // that functionality enforces that restriction in 793 // that functionality enforces that restriction in
794 // NotificationsApiFunction::IsNotificationsApiAvailable(). This is more 794 // NotificationsApiFunction::IsNotificationsApiAvailable(). This is more
795 // complicated than other namespaces because we are sharing the 795 // complicated than other namespaces because we are sharing the
796 // notifications permission with WebKit/Blink notifications. 796 // notifications permission with WebKit/Blink notifications.
797 "channel": "stable", 797 "channel": "stable",
798 "extension_types": [ 798 "extension_types": [
799 "extension", "legacy_packaged_app", "hosted_app", "platform_app" 799 "extension", "legacy_packaged_app", "hosted_app", "platform_app"
800 ] 800 ]
801 }, 801 },
802 "notificationProvider": {
803 "channel": "trunk",
804 "extension_types": ["extension", "platform_app"]
805 },
802 "echoPrivate": { 806 "echoPrivate": {
803 "channel": "stable", 807 "channel": "stable",
804 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], 808 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
805 "location": "component", 809 "location": "component",
806 "platforms": ["chromeos"] 810 "platforms": ["chromeos"]
807 }, 811 },
808 "pageCapture": { 812 "pageCapture": {
809 "channel": "stable", 813 "channel": "stable",
810 "extension_types": ["extension", "legacy_packaged_app"] 814 "extension_types": ["extension", "legacy_packaged_app"]
811 }, 815 },
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 // Only allowed for whitelisted extensions until all the caveats are 1107 // Only allowed for whitelisted extensions until all the caveats are
1104 // addressed. Tracked in crbug/285151. 1108 // addressed. Tracked in crbug/285151.
1105 "channel": "stable", 1109 "channel": "stable",
1106 "extension_types": ["extension"], 1110 "extension_types": ["extension"],
1107 "location": "component", 1111 "location": "component",
1108 "whitelist": [ 1112 "whitelist": [
1109 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension 1113 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension
1110 ] 1114 ]
1111 }] 1115 }]
1112 } 1116 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698