OLD | NEW |
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 Loading... |
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 "systemInfo.storage": { |
| 543 "channel": "dev", |
| 544 "extension_types": [ |
| 545 "extension", "packaged_app", "hosted_app", "platform_app" |
| 546 ] |
| 547 }, |
542 "systemInfo.display": { | 548 "systemInfo.display": { |
543 "channel": "stable", | 549 "channel": "stable", |
544 "extension_types": ["extension", "packaged_app", "platform_app"] | 550 "extension_types": ["extension", "packaged_app", "platform_app"] |
545 }, | 551 }, |
546 "systemPrivate": { | 552 "systemPrivate": { |
547 "channel": "stable", | 553 "channel": "stable", |
548 "extension_types": ["extension", "packaged_app"], | 554 "extension_types": ["extension", "packaged_app"], |
549 "location": "component" | 555 "location": "component" |
550 }, | 556 }, |
551 "tabs": { | 557 "tabs": { |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
638 }, | 644 }, |
639 "webRequestBlocking": { | 645 "webRequestBlocking": { |
640 "channel": "stable", | 646 "channel": "stable", |
641 "extension_types": ["extension", "packaged_app"] | 647 "extension_types": ["extension", "packaged_app"] |
642 }, | 648 }, |
643 "webview": { | 649 "webview": { |
644 "channel": "stable", | 650 "channel": "stable", |
645 "extension_types": ["platform_app"] | 651 "extension_types": ["platform_app"] |
646 } | 652 } |
647 } | 653 } |
OLD | NEW |