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

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

Issue 23506021: Require confirmation for writable directory access. (Closed) Base URL: http://git.chromium.org/chromium/src.git@directory-permission-hack
Patch Set: Created 7 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 (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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 "extension_types": ["platform_app"] 270 "extension_types": ["platform_app"]
271 }], 271 }],
272 "fileSystem.write": [{ 272 "fileSystem.write": [{
273 "channel": "stable", 273 "channel": "stable",
274 "extension_types": ["platform_app"] 274 "extension_types": ["platform_app"]
275 },{ 275 },{
276 "channel": "stable", 276 "channel": "stable",
277 "extension_types": ["extension"], 277 "extension_types": ["extension"],
278 "whitelist": [ "2FC374607C2DF285634B67C64A2E356C607091C3" ] 278 "whitelist": [ "2FC374607C2DF285634B67C64A2E356C607091C3" ]
279 }], 279 }],
280 "fileSystem.writeDirectory": [{
281 "channel": "trunk",
282 "extension_types": ["platform_app"]
283 }],
not at google - send to devlin 2013/09/03 17:07:04 For the record: [{...}] in these files is equivale
Sam McNally 2013/09/04 00:21:30 Having fileSystem with the [] and a child permissi
not at google - send to devlin 2013/09/04 00:23:07 Oh. I didn't even realised that those complex perm
280 "fontSettings": { 284 "fontSettings": {
281 "channel": "stable", 285 "channel": "stable",
282 "extension_types": ["extension", "legacy_packaged_app"] 286 "extension_types": ["extension", "legacy_packaged_app"]
283 }, 287 },
284 "fullscreen": { 288 "fullscreen": {
285 "channel": "stable", 289 "channel": "stable",
286 "extension_types": ["platform_app"] 290 "extension_types": ["platform_app"]
287 }, 291 },
288 "geolocation": { 292 "geolocation": {
289 "channel": "stable", 293 "channel": "stable",
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 }, 690 },
687 "webRequestBlocking": { 691 "webRequestBlocking": {
688 "channel": "stable", 692 "channel": "stable",
689 "extension_types": ["extension", "legacy_packaged_app"] 693 "extension_types": ["extension", "legacy_packaged_app"]
690 }, 694 },
691 "webview": { 695 "webview": {
692 "channel": "stable", 696 "channel": "stable",
693 "extension_types": ["platform_app"] 697 "extension_types": ["platform_app"]
694 } 698 }
695 } 699 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698