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

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

Issue 10704258: Add extension permissions for Media Gallery API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comment Created 8 years, 5 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 { 5 {
6 "activeTab": { 6 "activeTab": {
7 "channel": "dev", 7 "channel": "dev",
8 "extension_types": ["extension", "packaged_app"], 8 "extension_types": ["extension", "packaged_app"],
9 "min_manifest_version": 2 9 "min_manifest_version": 2
10 }, 10 },
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 }, 172 },
173 "managedModePrivate": { 173 "managedModePrivate": {
174 "channel": "dev", 174 "channel": "dev",
175 "extension_types": ["extension", "packaged_app"], 175 "extension_types": ["extension", "packaged_app"],
176 "location": "component" 176 "location": "component"
177 }, 177 },
178 "management": { 178 "management": {
179 "channel": "stable", 179 "channel": "stable",
180 "extension_types": ["extension", "packaged_app"] 180 "extension_types": ["extension", "packaged_app"]
181 }, 181 },
182 "mediaGalleries": {
183 "channel": "stable",
184 "extension_types": [ "platform_app" ]
185 },
186 "mediaGalleriesAccessEverything": {
187 "channel": "stable",
188 "extension_types": [ "platform_app" ]
189 },
190 "mediaGalleriesRead": {
191 "channel": "stable",
192 "extension_types": [ "platform_app" ]
193 },
182 "mediaPlayerPrivate": { 194 "mediaPlayerPrivate": {
183 "channel": "stable", 195 "channel": "stable",
184 "extension_types": ["extension", "packaged_app"], 196 "extension_types": ["extension", "packaged_app"],
185 "location": "component" 197 "location": "component"
186 }, 198 },
187 "metricsPrivate": { 199 "metricsPrivate": {
188 "channel": "stable", 200 "channel": "stable",
189 "extension_types": ["extension", "packaged_app"], 201 "extension_types": ["extension", "packaged_app"],
190 "location": "component" 202 "location": "component"
191 }, 203 },
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 }, 316 },
305 "webRequest": { 317 "webRequest": {
306 "channel": "stable", 318 "channel": "stable",
307 "extension_types": ["extension", "packaged_app"] 319 "extension_types": ["extension", "packaged_app"]
308 }, 320 },
309 "webRequestBlocking": { 321 "webRequestBlocking": {
310 "channel": "stable", 322 "channel": "stable",
311 "extension_types": ["extension", "packaged_app"] 323 "extension_types": ["extension", "packaged_app"]
312 } 324 }
313 } 325 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698