| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 }, | 548 }, |
| 545 "webview": { | 549 "webview": { |
| 546 "dependencies": ["permission:webview"], | 550 "dependencies": ["permission:webview"], |
| 547 "contexts": ["blessed_extension"] | 551 "contexts": ["blessed_extension"] |
| 548 }, | 552 }, |
| 549 "windows": { | 553 "windows": { |
| 550 "dependencies": ["permission:tabs"], | 554 "dependencies": ["permission:tabs"], |
| 551 "contexts": ["blessed_extension"] | 555 "contexts": ["blessed_extension"] |
| 552 } | 556 } |
| 553 } | 557 } |
| OLD | NEW |