| 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 // This features file defines permissions for extension APIs implemented | 5 // This features file defines permissions for extension APIs implemented |
| 6 // under src/chrome. | 6 // under src/chrome. |
| 7 // See extensions/common/features/* to understand this file, in particular | 7 // See extensions/common/features/* to understand this file, in particular |
| 8 // feature.h, simple_feature.h, and base_feature_provider.h. | 8 // feature.h, simple_feature.h, and base_feature_provider.h. |
| 9 | 9 |
| 10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 "geolocation": { | 588 "geolocation": { |
| 589 "channel": "stable", | 589 "channel": "stable", |
| 590 "extension_types": [ | 590 "extension_types": [ |
| 591 "extension", "legacy_packaged_app", "hosted_app", "platform_app" | 591 "extension", "legacy_packaged_app", "hosted_app", "platform_app" |
| 592 ] | 592 ] |
| 593 }, | 593 }, |
| 594 "history": { | 594 "history": { |
| 595 "channel": "stable", | 595 "channel": "stable", |
| 596 "extension_types": ["extension", "legacy_packaged_app"] | 596 "extension_types": ["extension", "legacy_packaged_app"] |
| 597 }, | 597 }, |
| 598 "hotwordAudioVerificationPrivate": { |
| 599 "channel": "dev", |
| 600 "extension_types": ["platform_app"], |
| 601 "whitelist": [ |
| 602 "B6356EFF4047BC5F868C7D91868B6F5C01951A8A" // hotword_audio_verification |
| 603 ] |
| 604 }, |
| 598 "hotwordPrivate": { | 605 "hotwordPrivate": { |
| 599 "channel": "stable", | 606 "channel": "stable", |
| 600 "extension_types": ["extension"], | 607 "extension_types": ["extension"], |
| 601 "whitelist": [ | 608 "whitelist": [ |
| 602 "8CE39F175D076AD6BDF7CBF418F2409558B367E3", // hotword_helper | 609 "8CE39F175D076AD6BDF7CBF418F2409558B367E3", // hotword_helper |
| 603 "09FDCB5851B8F3378DB630D06E316076E89C95A6" // hotword nacl | 610 "09FDCB5851B8F3378DB630D06E316076E89C95A6" // hotword nacl |
| 604 ] | 611 ] |
| 605 }, | 612 }, |
| 606 "identity": { | 613 "identity": { |
| 607 "channel": "stable", | 614 "channel": "stable", |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1146 // Only allowed for whitelisted extensions until all the caveats are | 1153 // Only allowed for whitelisted extensions until all the caveats are |
| 1147 // addressed. Tracked in crbug/285151. | 1154 // addressed. Tracked in crbug/285151. |
| 1148 "channel": "stable", | 1155 "channel": "stable", |
| 1149 "extension_types": ["extension"], | 1156 "extension_types": ["extension"], |
| 1150 "location": "component", | 1157 "location": "component", |
| 1151 "whitelist": [ | 1158 "whitelist": [ |
| 1152 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 1159 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
| 1153 ] | 1160 ] |
| 1154 }] | 1161 }] |
| 1155 } | 1162 } |
| OLD | NEW |