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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
523 "storage": { | 523 "storage": { |
524 "channel": "stable", | 524 "channel": "stable", |
525 "extension_types": ["extension", "packaged_app", "platform_app"], | 525 "extension_types": ["extension", "packaged_app", "platform_app"], |
526 "min_manifest_version": 2 | 526 "min_manifest_version": 2 |
527 }, | 527 }, |
528 "system.cpu": { | 528 "system.cpu": { |
529 "channel": "dev", | 529 "channel": "dev", |
530 "extension_types": [ | 530 "extension_types": [ |
531 "extension", "packaged_app", "hosted_app", "platform_app" | 531 "extension", "packaged_app", "hosted_app", "platform_app" |
532 ], | 532 ], |
533 "whitelist": [""] | 533 "whitelist": [""] |
Haojian Wu
2013/07/29 07:26:36
Should we remove the "whitelist" restriction of sy
not at google - send to devlin
2013/07/29 14:51:52
Why do we bother supporting this...?
Haojian Wu
2013/07/30 02:10:47
I just keep the cpu/memory API unchanged here.
see
| |
534 }, | 534 }, |
535 "system.memory": { | 535 "system.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", "platform_app" | |
546 ] | |
547 }, | |
542 "system.display": { | 548 "system.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 |