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

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: Update Created 7 years, 2 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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 "contexts": ["blessed_extension"] 555 "contexts": ["blessed_extension"]
556 }, 556 },
557 "system.memory": { 557 "system.memory": {
558 "dependencies": ["permission:system.memory"], 558 "dependencies": ["permission:system.memory"],
559 "contexts": ["blessed_extension"] 559 "contexts": ["blessed_extension"]
560 }, 560 },
561 "system.storage": { 561 "system.storage": {
562 "dependencies": ["permission:system.storage"], 562 "dependencies": ["permission:system.storage"],
563 "contexts": ["blessed_extension"] 563 "contexts": ["blessed_extension"]
564 }, 564 },
565 "system.storage.getAvailableCapacity": {
566 "channel": "dev"
567 },
565 "systemPrivate": { 568 "systemPrivate": {
566 "dependencies": ["permission:systemPrivate"], 569 "dependencies": ["permission:systemPrivate"],
567 "contexts": ["blessed_extension"] 570 "contexts": ["blessed_extension"]
568 }, 571 },
569 "tabCapture": { 572 "tabCapture": {
570 "dependencies": ["permission:tabCapture"], 573 "dependencies": ["permission:tabCapture"],
571 "contexts": ["blessed_extension"] 574 "contexts": ["blessed_extension"]
572 }, 575 },
573 "tabs": { 576 "tabs": {
574 "channel": "stable", 577 "channel": "stable",
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 "internal": true, 675 "internal": true,
673 "channel": "stable", 676 "channel": "stable",
674 "dependencies": ["permission:webview"], 677 "dependencies": ["permission:webview"],
675 "contexts": ["blessed_extension"] 678 "contexts": ["blessed_extension"]
676 }, 679 },
677 "windows": { 680 "windows": {
678 "dependencies": ["api:tabs"], 681 "dependencies": ["api:tabs"],
679 "contexts": ["blessed_extension"] 682 "contexts": ["blessed_extension"]
680 } 683 }
681 } 684 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698