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

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

Issue 18578008: [SystemInfo API] Move Storage API out of experimental namespace and rename to the "system" namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename to the "system" namespace. Created 7 years, 5 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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 ], 532 ],
533 "whitelist": [""] 533 "whitelist": [""]
534 }, 534 },
535 "systemInfo.memory": { 535 "systemInfo.memory": {
536 "channel": "dev", 536 "channel": "dev",
537 "extension_types": [ 537 "extension_types": [
538 "extension", "packaged_app", "hosted_app", "platform_app" 538 "extension", "packaged_app", "hosted_app", "platform_app"
539 ], 539 ],
540 "whitelist": [""] 540 "whitelist": [""]
541 }, 541 },
542 "system.storage": {
543 "channel": "stable",
544 "extension_types": [
545 "extension", "packaged_app", "hosted_app", "platform_app"
546 ]
547 },
548 "system.storage.addAvailableCapacityWatch": {
549 "channel": "dev",
550 "extension_types": [
551 "extension", "packaged_app", "hosted_app", "platform_app"
552 ]
553 },
554 "system.storage.removeAvailableCapacityWatch": {
555 "channel": "dev",
556 "extension_types": [
557 "extension", "packaged_app", "hosted_app", "platform_app"
558 ]
559 },
560 "system.storage.getAllAvailableCapacityWatches": {
561 "channel": "dev",
562 "extension_types": [
563 "extension", "packaged_app", "hosted_app", "platform_app"
564 ]
565 },
566 "system.storage.removeAllAvailableCapacityWatches": {
567 "channel": "dev",
568 "extension_types": [
569 "extension", "packaged_app", "hosted_app", "platform_app"
570 ]
571 },
572 "system.storage.onAvailableCapacityChanged": {
573 "channel": "dev",
574 "extension_types": [
575 "extension", "packaged_app", "hosted_app", "platform_app"
576 ]
577 },
Haojian Wu 2013/07/18 08:51:20 I'm not sure whether this is the right way to make
Hongbo Min 2013/07/18 09:56:43 I think you are right. Testing the api in dev cha
Haojian Wu 2013/07/18 10:44:30 That means we can only build the trunk-channel chr
方觉(Fang Jue) 2013/07/18 11:44:30 No. This will not make these methods dev only. _pe
Haojian Wu 2013/07/18 15:43:31 Thanks for the useful instructions and link. kalm
not at google - send to devlin 2013/07/18 17:06:18 This is almost correct, you don't need to restrict
Haojian Wu 2013/07/19 08:47:12 Done. Please check whether I get your point.
542 "systemInfo.display": { 578 "systemInfo.display": {
543 "channel": "stable", 579 "channel": "stable",
544 "extension_types": ["extension", "packaged_app", "platform_app"] 580 "extension_types": ["extension", "packaged_app", "platform_app"]
545 }, 581 },
546 "systemPrivate": { 582 "systemPrivate": {
547 "channel": "stable", 583 "channel": "stable",
548 "extension_types": ["extension", "packaged_app"], 584 "extension_types": ["extension", "packaged_app"],
549 "location": "component" 585 "location": "component"
550 }, 586 },
551 "tabs": { 587 "tabs": {
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 }, 674 },
639 "webRequestBlocking": { 675 "webRequestBlocking": {
640 "channel": "stable", 676 "channel": "stable",
641 "extension_types": ["extension", "packaged_app"] 677 "extension_types": ["extension", "packaged_app"]
642 }, 678 },
643 "webview": { 679 "webview": {
644 "channel": "stable", 680 "channel": "stable",
645 "extension_types": ["platform_app"] 681 "extension_types": ["platform_app"]
646 } 682 }
647 } 683 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698