| Index: chrome/browser/chromeos/settings/device_settings_provider.cc
|
| diff --git a/chrome/browser/chromeos/settings/device_settings_provider.cc b/chrome/browser/chromeos/settings/device_settings_provider.cc
|
| index cb2c5fcaac7ba9e3f3f66f60f48e9012a06ac99e..91c7e9c51175e9edf2469ef496cb687380d5e38a 100644
|
| --- a/chrome/browser/chromeos/settings/device_settings_provider.cc
|
| +++ b/chrome/browser/chromeos/settings/device_settings_provider.cc
|
| @@ -63,6 +63,7 @@ const char* const kKnownSettings[] = {
|
| kDeviceDisabled,
|
| kDeviceDisabledMessage,
|
| kDeviceOwner,
|
| + kAllowBluetooth,
|
| kDisplayRotationDefault,
|
| kExtensionCacheSize,
|
| kHeartbeatEnabled,
|
| @@ -444,6 +445,11 @@ void DecodeGenericPolicies(
|
| kDisplayRotationDefault,
|
| policy.display_rotation_default().display_rotation_default());
|
| }
|
| +
|
| + new_values_cache->SetBoolean(
|
| + kAllowBluetooth, policy.has_allow_bluetooth() &&
|
| + policy.allow_bluetooth().has_allow_bluetooth() &&
|
| + policy.allow_bluetooth().allow_bluetooth());
|
| }
|
|
|
| void DecodeLogUploadPolicies(const em::ChromeDeviceSettingsProto& policy,
|
|
|