| Index: chrome/browser/chromeos/extensions/device_local_account_management_policy_provider.cc
|
| diff --git a/chrome/browser/chromeos/extensions/device_local_account_management_policy_provider.cc b/chrome/browser/chromeos/extensions/device_local_account_management_policy_provider.cc
|
| index ec4db9cd464dfba754cae40fd8a4cdd8b1906930..8486fd7d46490b9709f9dca317b20c4b1308633a 100644
|
| --- a/chrome/browser/chromeos/extensions/device_local_account_management_policy_provider.cc
|
| +++ b/chrome/browser/chromeos/extensions/device_local_account_management_policy_provider.cc
|
| @@ -409,9 +409,9 @@ const char* const kSafePermissionStrings[] = {
|
| // Risk of listening attack.
|
| // "audio",
|
|
|
| - // Need to surface notification to the user. Check what existing UI we have
|
| - // and whether that's sufficient for PS.
|
| - // "audioCapture",
|
| + // User is prompted (allow/deny) when an extension requests audioCapture.
|
| + // The request is done via the getUserMedia API.
|
| + "audioCapture",
|
|
|
| // Just resource management, probably doesn't even apply to Chrome OS.
|
| "background",
|
| @@ -651,9 +651,9 @@ const char* const kSafePermissionStrings[] = {
|
| // Belongs to the USB API.
|
| "usbDevices",
|
|
|
| - // Need to surface notification to the user. Check what existing UI we have
|
| - // and whether that's sufficient for PS.
|
| - // "videoCapture",
|
| + // User is prompted (allow/deny) when an extension requests videoCapture.
|
| + // The request is done via the getUserMedia API.
|
| + "videoCapture",
|
|
|
| // Admin controls network config anyways.
|
| "vpnProvider",
|
|
|