| 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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 "gcm": { | 515 "gcm": { |
| 516 "channel": "stable", | 516 "channel": "stable", |
| 517 "extension_types": ["extension", "platform_app"] | 517 "extension_types": ["extension", "platform_app"] |
| 518 }, | 518 }, |
| 519 "geolocation": { | 519 "geolocation": { |
| 520 "channel": "stable", | 520 "channel": "stable", |
| 521 "extension_types": [ | 521 "extension_types": [ |
| 522 "extension", "legacy_packaged_app", "hosted_app", "platform_app" | 522 "extension", "legacy_packaged_app", "hosted_app", "platform_app" |
| 523 ] | 523 ] |
| 524 }, | 524 }, |
| 525 "hid": [ | |
| 526 { | |
| 527 "channel": "dev", | |
| 528 "extension_types": ["platform_app"] | |
| 529 }, | |
| 530 { | |
| 531 "channel": "stable", | |
| 532 "extension_types": ["extension"], | |
| 533 "whitelist": [ | |
| 534 "496B6890097EB6E19809ADEADD095A8721FBB2E0", // FIDO U2F APIs | |
| 535 "E24F1786D842E91E74C27929B0B3715A4689A473" // CryptoToken | |
| 536 ] | |
| 537 } | |
| 538 ], | |
| 539 "history": { | 525 "history": { |
| 540 "channel": "stable", | 526 "channel": "stable", |
| 541 "extension_types": ["extension", "legacy_packaged_app"] | 527 "extension_types": ["extension", "legacy_packaged_app"] |
| 542 }, | 528 }, |
| 543 "hotwordPrivate": { | 529 "hotwordPrivate": { |
| 544 "channel": "stable", | 530 "channel": "stable", |
| 545 "extension_types": ["extension"], | 531 "extension_types": ["extension"], |
| 546 "whitelist": [ | 532 "whitelist": [ |
| 547 "8CE39F175D076AD6BDF7CBF418F2409558B367E3", // hotword_helper | 533 "8CE39F175D076AD6BDF7CBF418F2409558B367E3", // hotword_helper |
| 548 "09FDCB5851B8F3378DB630D06E316076E89C95A6" // hotword nacl | 534 "09FDCB5851B8F3378DB630D06E316076E89C95A6" // hotword nacl |
| (...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1121 // Only allowed for whitelisted extensions until all the caveats are | 1107 // Only allowed for whitelisted extensions until all the caveats are |
| 1122 // addressed. Tracked in crbug/285151. | 1108 // addressed. Tracked in crbug/285151. |
| 1123 "channel": "stable", | 1109 "channel": "stable", |
| 1124 "extension_types": ["extension"], | 1110 "extension_types": ["extension"], |
| 1125 "location": "component", | 1111 "location": "component", |
| 1126 "whitelist": [ | 1112 "whitelist": [ |
| 1127 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension | 1113 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension |
| 1128 ] | 1114 ] |
| 1129 }] | 1115 }] |
| 1130 } | 1116 } |
| OLD | NEW |