Index: chrome/browser/policy/default_geolocation_policy_handler.cc |
diff --git a/chrome/browser/policy/default_geolocation_policy_handler.cc b/chrome/browser/policy/default_geolocation_policy_handler.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..52c9a53c864cd1ad010c36dee88750c6c0d5e5de |
--- /dev/null |
+++ b/chrome/browser/policy/default_geolocation_policy_handler.cc |
@@ -0,0 +1,32 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "chrome/browser/policy/default_geolocation_policy_handler.h" |
+ |
+#include "base/values.h" |
+#include "chrome/common/pref_names.h" |
+#include "components/content_settings/core/common/content_settings.h" |
+#include "components/policy/core/common/policy_map.h" |
+#include "components/prefs/pref_value_map.h" |
+#include "policy/policy_constants.h" |
+ |
+namespace policy { |
+ |
+DefaultGeolocationPolicyHandler::DefaultGeolocationPolicyHandler() |
+ : IntRangePolicyHandlerBase(key::kDefaultGeolocationSetting, 1, 3, false) {} |
+ |
+DefaultGeolocationPolicyHandler::~DefaultGeolocationPolicyHandler() {} |
+ |
+void DefaultGeolocationPolicyHandler::ApplyPolicySettings( |
+ const PolicyMap& policies, PrefValueMap* prefs) { |
+ const base::Value* const value = policies.GetValue(policy_name()); |
+ int value_in_range; |
+ if (value && EnsureInRange(value, &value_in_range, nullptr) |
+ && value_in_range == CONTENT_SETTING_BLOCK) { |
+ // CONTENT_SETTING_BLOCK = BlockGeolocation |
+ prefs->SetBoolean(prefs::kArcLocationServiceEnabled, false); |
+ } |
+} |
+ |
+} // namespace policy |