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

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

Issue 22548009: [SystemInfo API] Implement storage.getAvailableCapacity API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@impl_get_available_capacity_api2
Patch Set: Upload again Created 7 years, 4 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 "activityLogPrivate": { 9 "activityLogPrivate": {
10 "dependencies": ["permission:activityLogPrivate"], 10 "dependencies": ["permission:activityLogPrivate"],
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 "contexts": ["blessed_extension"] 495 "contexts": ["blessed_extension"]
496 }, 496 },
497 "system.memory": { 497 "system.memory": {
498 "dependencies": ["permission:system.memory"], 498 "dependencies": ["permission:system.memory"],
499 "contexts": ["blessed_extension"] 499 "contexts": ["blessed_extension"]
500 }, 500 },
501 "system.storage": { 501 "system.storage": {
502 "dependencies": ["permission:system.storage"], 502 "dependencies": ["permission:system.storage"],
503 "contexts": ["blessed_extension"] 503 "contexts": ["blessed_extension"]
504 }, 504 },
505 "system.storage.getAvailableCapacity": {
506 "channel": "dev"
507 },
505 "systemPrivate": { 508 "systemPrivate": {
506 "dependencies": ["permission:systemPrivate"], 509 "dependencies": ["permission:systemPrivate"],
507 "contexts": ["blessed_extension"] 510 "contexts": ["blessed_extension"]
508 }, 511 },
509 "tabCapture": { 512 "tabCapture": {
510 "dependencies": ["permission:tabCapture"], 513 "dependencies": ["permission:tabCapture"],
511 "contexts": ["blessed_extension"] 514 "contexts": ["blessed_extension"]
512 }, 515 },
513 "tabs": { 516 "tabs": {
514 "channel": "stable", 517 "channel": "stable",
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 }, 586 },
584 "webview": { 587 "webview": {
585 "dependencies": ["permission:webview"], 588 "dependencies": ["permission:webview"],
586 "contexts": ["blessed_extension"] 589 "contexts": ["blessed_extension"]
587 }, 590 },
588 "windows": { 591 "windows": {
589 "dependencies": ["api:tabs"], 592 "dependencies": ["api:tabs"],
590 "contexts": ["blessed_extension"] 593 "contexts": ["blessed_extension"]
591 } 594 }
592 } 595 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698