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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 "extension_types": [ | 501 "extension_types": [ |
502 "extension", "legacy_packaged_app", "hosted_app", "platform_app" | 502 "extension", "legacy_packaged_app", "hosted_app", "platform_app" |
503 ] | 503 ] |
504 }, | 504 }, |
505 "history": { | 505 "history": { |
506 "channel": "stable", | 506 "channel": "stable", |
507 "extension_types": ["extension", "legacy_packaged_app"] | 507 "extension_types": ["extension", "legacy_packaged_app"] |
508 }, | 508 }, |
509 "hotwordPrivate": { | 509 "hotwordPrivate": { |
510 "channel": "stable", | 510 "channel": "stable", |
511 "extension_types": ["extension"], | 511 "extension_types": ["extension", "platform_app"], |
512 "whitelist": [ | 512 "whitelist": [ |
513 "8CE39F175D076AD6BDF7CBF418F2409558B367E3", // hotword_helper | 513 "8CE39F175D076AD6BDF7CBF418F2409558B367E3", // hotword_helper |
514 "09FDCB5851B8F3378DB630D06E316076E89C95A6" // hotword nacl | 514 "09FDCB5851B8F3378DB630D06E316076E89C95A6", // hotword nacl |
| 515 "B6356EFF4047BC5F868C7D91868B6F5C01951A8A" // hotword_audio_verification |
515 ] | 516 ] |
516 }, | 517 }, |
517 "identity": { | 518 "identity": { |
518 "channel": "stable", | 519 "channel": "stable", |
519 "extension_types": ["extension", "platform_app"] | 520 "extension_types": ["extension", "platform_app"] |
520 }, | 521 }, |
521 "identity.email": { | 522 "identity.email": { |
522 "channel": "stable", | 523 "channel": "stable", |
523 "extension_types": ["extension", "platform_app"] | 524 "extension_types": ["extension", "platform_app"] |
524 }, | 525 }, |
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1060 }, | 1061 }, |
1061 "webRequest": { | 1062 "webRequest": { |
1062 "channel": "stable", | 1063 "channel": "stable", |
1063 "extension_types": ["extension", "legacy_packaged_app"] | 1064 "extension_types": ["extension", "legacy_packaged_app"] |
1064 }, | 1065 }, |
1065 "webRequestBlocking": { | 1066 "webRequestBlocking": { |
1066 "channel": "stable", | 1067 "channel": "stable", |
1067 "extension_types": ["extension", "legacy_packaged_app"] | 1068 "extension_types": ["extension", "legacy_packaged_app"] |
1068 } | 1069 } |
1069 } | 1070 } |
OLD | NEW |