Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(334)

Side by Side Diff: chrome/common/extensions/api/_permission_features.json

Issue 528113003: Hotword Audio Verification App: Adds to hotwordPrivate API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@page-one
Patch Set: Review comments Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "hotwordPrivate": { 598 "hotwordPrivate": {
599 "channel": "stable", 599 "channel": "stable",
600 "extension_types": ["extension"], 600 "extension_types": ["extension", "platform_app"],
601 "whitelist": [ 601 "whitelist": [
602 "8CE39F175D076AD6BDF7CBF418F2409558B367E3", // hotword_helper 602 "8CE39F175D076AD6BDF7CBF418F2409558B367E3", // hotword_helper
603 "09FDCB5851B8F3378DB630D06E316076E89C95A6" // hotword nacl 603 "09FDCB5851B8F3378DB630D06E316076E89C95A6", // hotword nacl
604 "B6356EFF4047BC5F868C7D91868B6F5C01951A8A" // hotword_audio_verification
604 ] 605 ]
605 }, 606 },
606 "identity": { 607 "identity": {
607 "channel": "stable", 608 "channel": "stable",
608 "extension_types": ["extension", "platform_app"] 609 "extension_types": ["extension", "platform_app"]
609 }, 610 },
610 "identity.email": { 611 "identity.email": {
611 "channel": "stable", 612 "channel": "stable",
612 "extension_types": ["extension", "platform_app"] 613 "extension_types": ["extension", "platform_app"]
613 }, 614 },
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
1146 // Only allowed for whitelisted extensions until all the caveats are 1147 // Only allowed for whitelisted extensions until all the caveats are
1147 // addressed. Tracked in crbug/285151. 1148 // addressed. Tracked in crbug/285151.
1148 "channel": "stable", 1149 "channel": "stable",
1149 "extension_types": ["extension"], 1150 "extension_types": ["extension"],
1150 "location": "component", 1151 "location": "component",
1151 "whitelist": [ 1152 "whitelist": [
1152 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension 1153 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension
1153 ] 1154 ]
1154 }] 1155 }]
1155 } 1156 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698