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

Unified Diff: chrome/browser/chromeos/policy/proto/chrome_device_policy.proto

Issue 1936903002: Allow SAML logins to use the webcam (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add comment to JS re: C++ permission check Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
diff --git a/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto b/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
index 60a8e80472e58639ba4b9b2235b9d23205030b06..8ba0e7c4d516d0373a26b1733560b379c5f7978b 100644
--- a/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
+++ b/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
@@ -704,6 +704,13 @@ message DeviceQuirksDownloadEnabledProto {
optional bool quirks_download_enabled = 1;
}
+// A list of security origins for SAML login pages that are allowed to
+// access the webcam. No login pages will be allowed to access the
+// webcam if the list is empty.
+message LoginVideoCaptureAllowedUrlsProto {
+ repeated string urls = 1;
+}
+
message ChromeDeviceSettingsProto {
optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
optional UserWhitelistProto user_whitelist = 2;
@@ -754,4 +761,6 @@ message ChromeDeviceSettingsProto {
optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42;
optional AllowBluetoothProto allow_bluetooth = 43;
optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44;
+ optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls =
+ 45;
}

Powered by Google App Engine
This is Rietveld 408576698