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

Side by Side 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, 7 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 syntax = "proto2"; 5 syntax = "proto2";
6 6
7 option optimize_for = LITE_RUNTIME; 7 option optimize_for = LITE_RUNTIME;
8 8
9 package enterprise_management; 9 package enterprise_management;
10 10
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 // Policy which controls whether Bluetooth is available. 697 // Policy which controls whether Bluetooth is available.
698 optional bool allow_bluetooth = 1 [default = true]; 698 optional bool allow_bluetooth = 1 [default = true];
699 } 699 }
700 700
701 // Settings that control whether a device can download hardware configuration 701 // Settings that control whether a device can download hardware configuration
702 // files from the Quirks Server. 702 // files from the Quirks Server.
703 message DeviceQuirksDownloadEnabledProto { 703 message DeviceQuirksDownloadEnabledProto {
704 optional bool quirks_download_enabled = 1; 704 optional bool quirks_download_enabled = 1;
705 } 705 }
706 706
707 // A list of security origins for SAML login pages that are allowed to
708 // access the webcam. No login pages will be allowed to access the
709 // webcam if the list is empty.
710 message LoginVideoCaptureAllowedUrlsProto {
711 repeated string urls = 1;
712 }
713
707 message ChromeDeviceSettingsProto { 714 message ChromeDeviceSettingsProto {
708 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; 715 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
709 optional UserWhitelistProto user_whitelist = 2; 716 optional UserWhitelistProto user_whitelist = 2;
710 optional GuestModeEnabledProto guest_mode_enabled = 3; 717 optional GuestModeEnabledProto guest_mode_enabled = 3;
711 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 718 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4
712 [deprecated = true]; 719 [deprecated = true];
713 optional CameraEnabledProto camera_enabled = 5; 720 optional CameraEnabledProto camera_enabled = 5;
714 optional ShowUserNamesOnSigninProto show_user_names = 6; 721 optional ShowUserNamesOnSigninProto show_user_names = 6;
715 optional DataRoamingEnabledProto data_roaming_enabled = 7; 722 optional DataRoamingEnabledProto data_roaming_enabled = 7;
716 optional AllowNewUsersProto allow_new_users = 8; 723 optional AllowNewUsersProto allow_new_users = 8;
(...skipping 30 matching lines...) Expand all
747 optional LoginScreenDomainAutoCompleteProto 754 optional LoginScreenDomainAutoCompleteProto
748 login_screen_domain_auto_complete = 37; 755 login_screen_domain_auto_complete = 37;
749 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; 756 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38;
750 optional DisplayRotationDefaultProto display_rotation_default = 39; 757 optional DisplayRotationDefaultProto display_rotation_default = 39;
751 optional AllowKioskAppControlChromeVersionProto 758 optional AllowKioskAppControlChromeVersionProto
752 allow_kiosk_app_control_chrome_version = 40; 759 allow_kiosk_app_control_chrome_version = 40;
753 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; 760 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41;
754 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; 761 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42;
755 optional AllowBluetoothProto allow_bluetooth = 43; 762 optional AllowBluetoothProto allow_bluetooth = 43;
756 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; 763 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44;
764 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls =
765 45;
757 } 766 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698