| 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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 }, | 497 }, |
| 498 "ttsEngine": { | 498 "ttsEngine": { |
| 499 "dependencies": ["permission:ttsEngine"], | 499 "dependencies": ["permission:ttsEngine"], |
| 500 "contexts": ["blessed_extension"] | 500 "contexts": ["blessed_extension"] |
| 501 }, | 501 }, |
| 502 "types": { | 502 "types": { |
| 503 "channel": "stable", | 503 "channel": "stable", |
| 504 "extension_types": ["extension", "packaged_app", "platform_app"], | 504 "extension_types": ["extension", "packaged_app", "platform_app"], |
| 505 "contexts": ["blessed_extension"] | 505 "contexts": ["blessed_extension"] |
| 506 }, | 506 }, |
| 507 "types.private": { |
| 508 "channel": "dev", |
| 509 "extension_types": ["extension"], |
| 510 "location": "component" |
| 511 }, |
| 507 "usb": { | 512 "usb": { |
| 508 "dependencies": ["permission:usb"], | 513 "dependencies": ["permission:usb"], |
| 509 "contexts": ["blessed_extension"] | 514 "contexts": ["blessed_extension"] |
| 510 }, | 515 }, |
| 511 "wallpaperPrivate": { | 516 "wallpaperPrivate": { |
| 512 "platform": "chromeos", | 517 "platform": "chromeos", |
| 513 "dependencies": ["permission:wallpaperPrivate"], | 518 "dependencies": ["permission:wallpaperPrivate"], |
| 514 "contexts": ["blessed_extension"] | 519 "contexts": ["blessed_extension"] |
| 515 }, | 520 }, |
| 516 "webNavigation": { | 521 "webNavigation": { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 544 }, | 549 }, |
| 545 "webview": { | 550 "webview": { |
| 546 "dependencies": ["permission:webview"], | 551 "dependencies": ["permission:webview"], |
| 547 "contexts": ["blessed_extension"] | 552 "contexts": ["blessed_extension"] |
| 548 }, | 553 }, |
| 549 "windows": { | 554 "windows": { |
| 550 "dependencies": ["permission:tabs"], | 555 "dependencies": ["permission:tabs"], |
| 551 "contexts": ["blessed_extension"] | 556 "contexts": ["blessed_extension"] |
| 552 } | 557 } |
| 553 } | 558 } |
| OLD | NEW |