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

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

Issue 1736293002: Added boolean policy to enable deactivation of bluetooth for managed devices (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed policy, added missing stuff Created 4 years, 10 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 508391952ea7f284626e99ba9e4b70f10f698c32..0b3a3587cb1b346e125d9d042689a00c013e4d64 100644
--- a/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
+++ b/chrome/browser/chromeos/policy/proto/chrome_device_policy.proto
@@ -655,6 +655,11 @@ message AllowKioskAppControlChromeVersionProto {
optional bool allow_kiosk_app_control_chrome_version = 1 [default = false];
}
+message AllowBluetoothProto {
+ // Policy which disables the bluetooth if the flag is set to false.
bartfab (slow) 2016/03/07 11:28:24 Nit: s/disables the bluetooth if the flag is set t
Ivan Šandrk 2016/03/07 13:07:44 Done.
+ optional bool allow_bluetooth = 1 [default = true];
+}
+
message ChromeDeviceSettingsProto {
optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
optional UserWhitelistProto user_whitelist = 2;
@@ -701,4 +706,5 @@ message ChromeDeviceSettingsProto {
optional DisplayRotationDefaultProto display_rotation_default = 39;
optional AllowKioskAppControlChromeVersionProto
allow_kiosk_app_control_chrome_version = 40;
+ optional AllowBluetoothProto allow_bluetooth = 41;
}

Powered by Google App Engine
This is Rietveld 408576698