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

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

Issue 389633002: Move system.* family of APIs to extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: No ash/ dependency anymore Created 6 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/extensions. 6 // under src/extensions.
7 7
8 // See extensions/common/features/* to understand this file, in particular 8 // See extensions/common/features/* to understand this file, in particular
9 // feature.h, simple_feature.h, and base_feature_provider.h. 9 // feature.h, simple_feature.h, and base_feature_provider.h.
10 10
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 // It should be the only non-app allowed to use the socket API. 97 // It should be the only non-app allowed to use the socket API.
98 "32A1BA997F8AB8DE29ED1BA94AAF00CF2A3FEFA7" 98 "32A1BA997F8AB8DE29ED1BA94AAF00CF2A3FEFA7"
99 ] 99 ]
100 } 100 }
101 ], 101 ],
102 "storage": { 102 "storage": {
103 "channel": "stable", 103 "channel": "stable",
104 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], 104 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
105 "min_manifest_version": 2 105 "min_manifest_version": 2
106 }, 106 },
107 "system.cpu": [
108 {
109 "channel": "stable",
110 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
111 },
112 {
113 "channel": "stable",
114 "extension_types": ["hosted_app"],
115 "whitelist": ["B44D08FD98F1523ED5837D78D0A606EA9D6206E5"] // Web Store
116 }
117 ],
118 "system.memory": [
119 {
120 "channel": "stable",
121 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
122 },
123 {
124 "channel": "stable",
125 "extension_types": ["hosted_app"],
126 "whitelist": ["B44D08FD98F1523ED5837D78D0A606EA9D6206E5"] // Web Store
127 }
128 ],
129 "system.network": [
130 {
131 "channel": "stable",
132 "extension_types": ["platform_app"]
133 },
134 {
135 "channel": "stable",
136 "extension_types": ["hosted_app"],
137 "whitelist": ["B44D08FD98F1523ED5837D78D0A606EA9D6206E5"] // Web Store
138 }
139 ],
140 "system.storage": [
141 {
142 "channel": "stable",
143 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
144 },
145 {
146 "channel": "stable",
147 "extension_types": ["hosted_app"],
148 "whitelist": ["B44D08FD98F1523ED5837D78D0A606EA9D6206E5"] // Web Store
149 }
150 ],
151 "system.display": [
152 {
153 "channel": "stable",
154 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
155 },
156 {
157 "channel": "stable",
158 "extension_types": ["hosted_app"],
159 "whitelist": ["B44D08FD98F1523ED5837D78D0A606EA9D6206E5"] // Web Store
160 }
161 ],
107 "usb": [ 162 "usb": [
108 { 163 {
109 "channel": "stable", 164 "channel": "stable",
110 "extension_types": ["platform_app"] 165 "extension_types": ["platform_app"]
111 }, 166 },
112 { 167 {
113 "channel": "stable", 168 "channel": "stable",
114 "extension_types": ["extension"], 169 "extension_types": ["extension"],
115 "whitelist": [ 170 "whitelist": [
116 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs 171 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs
(...skipping 25 matching lines...) Expand all
142 "extension_types": ["extension"], 197 "extension_types": ["extension"],
143 "whitelist": [ 198 "whitelist": [
144 // http://crbug.com/292856 199 // http://crbug.com/292856
145 "3F50C3A83839D9C76334BCE81CDEC06174F266AF", 200 "3F50C3A83839D9C76334BCE81CDEC06174F266AF",
146 "09FDCB5851B8F3378DB630D06E316076E89C95A6", 201 "09FDCB5851B8F3378DB630D06E316076E89C95A6",
147 "A434B90223C3C52F2B69DB494736B63C612C774D" 202 "A434B90223C3C52F2B69DB494736B63C612C774D"
148 ] 203 ]
149 } 204 }
150 ] 205 ]
151 } 206 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698