Chromium Code Reviews| 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 3526c278142787680ad75021178aaaa8ceab1b0f..bb10cf7400a41c8e934ffbcee16cf177298cbd28 100644 |
| --- a/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto |
| +++ b/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto |
| @@ -682,6 +682,12 @@ message UsbDetachableWhitelistProto { |
| repeated UsbDeviceIdProto id = 1; |
| } |
| +// Settings that control whether a device can download hardware configuration |
| +// files from the Quirks Server. |
| +message DeviceQuirksDownloadEnabledProto { |
| + optional bool quirks_download_enabled = 1 [default = true]; |
|
Thiemo Nagel
2016/03/23 14:53:24
I wouldn't specify a default because it is meaning
Greg Levin
2016/03/24 23:21:40
Done.
|
| +} |
| + |
| message ChromeDeviceSettingsProto { |
| optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| optional UserWhitelistProto user_whitelist = 2; |
| @@ -730,4 +736,5 @@ message ChromeDeviceSettingsProto { |
| allow_kiosk_app_control_chrome_version = 40; |
| optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; |
| optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; |
| + optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 43; |
| } |