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

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: 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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 ], 529 ],
530 "whitelist": [""] 530 "whitelist": [""]
531 }, 531 },
532 "systemInfo.memory": { 532 "systemInfo.memory": {
533 "channel": "dev", 533 "channel": "dev",
534 "extension_types": [ 534 "extension_types": [
535 "extension", "packaged_app", "hosted_app", "platform_app" 535 "extension", "packaged_app", "hosted_app", "platform_app"
536 ], 536 ],
537 "whitelist": [""] 537 "whitelist": [""]
538 }, 538 },
539 "systemInfo.storage": {
540 "channel": "dev",
541 "extension_types": [
542 "extension", "packaged_app", "hosted_app", "platform_app"
543 ]
544 },
539 "systemInfo.display": { 545 "systemInfo.display": {
540 "channel": "stable", 546 "channel": "stable",
541 "extension_types": ["extension", "packaged_app", "platform_app"] 547 "extension_types": ["extension", "packaged_app", "platform_app"]
542 }, 548 },
543 "systemPrivate": { 549 "systemPrivate": {
544 "channel": "stable", 550 "channel": "stable",
545 "extension_types": ["extension", "packaged_app"], 551 "extension_types": ["extension", "packaged_app"],
546 "location": "component" 552 "location": "component"
547 }, 553 },
548 "tabs": { 554 "tabs": {
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 }, 641 },
636 "webRequestBlocking": { 642 "webRequestBlocking": {
637 "channel": "stable", 643 "channel": "stable",
638 "extension_types": ["extension", "packaged_app"] 644 "extension_types": ["extension", "packaged_app"]
639 }, 645 },
640 "webview": { 646 "webview": {
641 "channel": "stable", 647 "channel": "stable",
642 "extension_types": ["platform_app"] 648 "extension_types": ["platform_app"]
643 } 649 }
644 } 650 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698