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

Unified Diff: chrome/browser/chromeos/extensions/device_local_account_management_policy_provider.cc

Issue 2532323003: Public Sessions - prompt the user for audioCapture/videoCapture requests (Closed)
Patch Set: std::move, formatting Created 4 years 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 side-by-side diff with in-line comments
Download patch
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",

Powered by Google App Engine
This is Rietveld 408576698