Index: remoting/host/policy_hack/policy_watcher.cc |
diff --git a/remoting/host/policy_hack/policy_watcher.cc b/remoting/host/policy_hack/policy_watcher.cc |
index 23320eaf0f9d3bb20a1caebc6a44c72935028fac..565119844283900db006bec40ff119d62ca575fc 100644 |
--- a/remoting/host/policy_hack/policy_watcher.cc |
+++ b/remoting/host/policy_hack/policy_watcher.cc |
@@ -32,7 +32,7 @@ bool GetBooleanOrDefault(const base::DictionaryValue* dict, const char* key, |
if (!dict->HasKey(key)) { |
return default_if_value_missing; |
} |
- base::Value* value; |
+ const base::Value* value; |
if (dict->Get(key, &value) && value->IsType(base::Value::TYPE_BOOLEAN)) { |
bool bool_value; |
CHECK(value->GetAsBoolean(&bool_value)); |