| Index: components/policy/core/common/registry_dict_win.cc
|
| diff --git a/components/policy/core/common/registry_dict_win.cc b/components/policy/core/common/registry_dict_win.cc
|
| index 6451ea8bef48f5c6ef683f91f9e3bf89dd79cc85..32d9828402365d27a13835d24aa9afb34355ded6 100644
|
| --- a/components/policy/core/common/registry_dict_win.cc
|
| +++ b/components/policy/core/common/registry_dict_win.cc
|
| @@ -184,7 +184,7 @@ std::unique_ptr<RegistryDict> RegistryDict::RemoveKey(const std::string& name) {
|
| }
|
|
|
| void RegistryDict::ClearKeys() {
|
| - STLDeleteValues(&keys_);
|
| + base::STLDeleteValues(&keys_);
|
| }
|
|
|
| base::Value* RegistryDict::GetValue(const std::string& name) {
|
| @@ -221,7 +221,7 @@ std::unique_ptr<base::Value> RegistryDict::RemoveValue(
|
| }
|
|
|
| void RegistryDict::ClearValues() {
|
| - STLDeleteValues(&values_);
|
| + base::STLDeleteValues(&values_);
|
| }
|
|
|
| void RegistryDict::Merge(const RegistryDict& other) {
|
|
|