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

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

Issue 50703013: fileSystemProvider: First cut at implementing fileSystemProvider API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 { 8 {
9 "activeTab": { 9 "activeTab": {
10 "channel": "stable", 10 "channel": "stable",
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 "extension_types": ["platform_app"] 327 "extension_types": ["platform_app"]
328 }], 328 }],
329 "fileSystem.write": [{ 329 "fileSystem.write": [{
330 "channel": "stable", 330 "channel": "stable",
331 "extension_types": ["platform_app"] 331 "extension_types": ["platform_app"]
332 },{ 332 },{
333 "channel": "stable", 333 "channel": "stable",
334 "extension_types": ["extension"], 334 "extension_types": ["extension"],
335 "whitelist": [ "2FC374607C2DF285634B67C64A2E356C607091C3" ] 335 "whitelist": [ "2FC374607C2DF285634B67C64A2E356C607091C3" ]
336 }], 336 }],
337 "fileSystemProvider": {
338 "channel": "trunk",
339 "extension_types": ["platform_app"]
kinuko 2013/10/30 10:45:05 So are we going to implement this as a platform_ap
satorux1 2013/10/31 01:51:26 It's tentative. At this moment, I'm thinking about
340 },
337 "fontSettings": { 341 "fontSettings": {
338 "channel": "stable", 342 "channel": "stable",
339 "extension_types": ["extension", "legacy_packaged_app"] 343 "extension_types": ["extension", "legacy_packaged_app"]
340 }, 344 },
341 "fullscreen": { 345 "fullscreen": {
342 "channel": "stable", 346 "channel": "stable",
343 "extension_types": ["platform_app"] 347 "extension_types": ["platform_app"]
344 }, 348 },
345 "geolocation": { 349 "geolocation": {
346 "channel": "stable", 350 "channel": "stable",
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
828 // Only allowed for whitelisted extensions until all the caveats are 832 // Only allowed for whitelisted extensions until all the caveats are
829 // addressed. Tracked in crbug/285151. 833 // addressed. Tracked in crbug/285151.
830 "channel": "stable", 834 "channel": "stable",
831 "extension_types": ["extension"], 835 "extension_types": ["extension"],
832 "location": "component", 836 "location": "component",
833 "whitelist": [ 837 "whitelist": [
834 "mfffpogegjflfpflabcdkioaeobkgjik" // GAIA Component Extension 838 "mfffpogegjflfpflabcdkioaeobkgjik" // GAIA Component Extension
835 ] 839 ]
836 }] 840 }]
837 } 841 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698