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

Side by Side Diff: chrome/common/extensions/api/_api_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 "activityLogPrivate": { 9 "activityLogPrivate": {
10 "dependencies": ["permission:activityLogPrivate"], 10 "dependencies": ["permission:activityLogPrivate"],
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 }, 302 },
303 "fileBrowserPrivate": { 303 "fileBrowserPrivate": {
304 "platforms": ["chromeos"], 304 "platforms": ["chromeos"],
305 "dependencies": ["permission:fileBrowserPrivate"], 305 "dependencies": ["permission:fileBrowserPrivate"],
306 "contexts": ["blessed_extension"] 306 "contexts": ["blessed_extension"]
307 }, 307 },
308 "fileSystem": { 308 "fileSystem": {
309 "dependencies": ["permission:fileSystem"], 309 "dependencies": ["permission:fileSystem"],
310 "contexts": ["blessed_extension"] 310 "contexts": ["blessed_extension"]
311 }, 311 },
312 "fileSystemProvider": {
313 "dependencies": ["permission:fileSystemProvider"],
314 "contexts": ["blessed_extension"]
315 },
312 "fontSettings": { 316 "fontSettings": {
313 "dependencies": ["permission:fontSettings"], 317 "dependencies": ["permission:fontSettings"],
314 "contexts": ["blessed_extension"] 318 "contexts": ["blessed_extension"]
315 }, 319 },
316 "hangoutsPrivate": { 320 "hangoutsPrivate": {
317 "channel": "stable", 321 "channel": "stable",
318 "contexts": ["blessed_extension"], 322 "contexts": ["blessed_extension"],
319 "whitelist": [ 323 "whitelist": [
320 // http://crbug.com/309737 324 // http://crbug.com/309737
321 "nckgahadagoaajjgafhacjanaoiihapd", 325 "nckgahadagoaajjgafhacjanaoiihapd",
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 "internal": true, 721 "internal": true,
718 "channel": "stable", 722 "channel": "stable",
719 "dependencies": ["permission:webview"], 723 "dependencies": ["permission:webview"],
720 "contexts": ["blessed_extension"] 724 "contexts": ["blessed_extension"]
721 }, 725 },
722 "windows": { 726 "windows": {
723 "dependencies": ["api:tabs"], 727 "dependencies": ["api:tabs"],
724 "contexts": ["blessed_extension"] 728 "contexts": ["blessed_extension"]
725 } 729 }
726 } 730 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698