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 "activityLogPrivate": { | 9 "activityLogPrivate": { |
10 "dependencies": ["permission:activityLogPrivate"], | 10 "dependencies": ["permission:activityLogPrivate"], |
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 "contexts": ["blessed_extension"] | 457 "contexts": ["blessed_extension"] |
458 }, | 458 }, |
459 "systemInfo.display": { | 459 "systemInfo.display": { |
460 "dependencies": ["permission:systemInfo.display"], | 460 "dependencies": ["permission:systemInfo.display"], |
461 "contexts": ["blessed_extension"] | 461 "contexts": ["blessed_extension"] |
462 }, | 462 }, |
463 "systemInfo.memory": { | 463 "systemInfo.memory": { |
464 "dependencies": ["permission:systemInfo.memory"], | 464 "dependencies": ["permission:systemInfo.memory"], |
465 "contexts": ["blessed_extension"] | 465 "contexts": ["blessed_extension"] |
466 }, | 466 }, |
| 467 "systemInfo.storage": { |
| 468 "dependencies": ["permission:systemInfo.storage"], |
| 469 "contexts": ["blessed_extension"] |
| 470 }, |
467 "systemPrivate": { | 471 "systemPrivate": { |
468 "dependencies": ["permission:systemPrivate"], | 472 "dependencies": ["permission:systemPrivate"], |
469 "contexts": ["blessed_extension"] | 473 "contexts": ["blessed_extension"] |
470 }, | 474 }, |
471 "tabCapture": { | 475 "tabCapture": { |
472 "dependencies": ["permission:tabCapture"], | 476 "dependencies": ["permission:tabCapture"], |
473 "contexts": ["blessed_extension"] | 477 "contexts": ["blessed_extension"] |
474 }, | 478 }, |
475 "tabs": { | 479 "tabs": { |
476 "channel": "stable", | 480 "channel": "stable", |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 }, | 553 }, |
550 "webview": { | 554 "webview": { |
551 "dependencies": ["permission:webview"], | 555 "dependencies": ["permission:webview"], |
552 "contexts": ["blessed_extension"] | 556 "contexts": ["blessed_extension"] |
553 }, | 557 }, |
554 "windows": { | 558 "windows": { |
555 "dependencies": ["permission:tabs"], | 559 "dependencies": ["permission:tabs"], |
556 "contexts": ["blessed_extension"] | 560 "contexts": ["blessed_extension"] |
557 } | 561 } |
558 } | 562 } |
OLD | NEW |