| 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 132adcaddea05d3f3d089f40d30928c0cf23b2cd..dd04beec1ab681aae19d9cccd075e0c5643cb8d2 100644
|
| --- a/components/policy/core/common/registry_dict_win.cc
|
| +++ b/components/policy/core/common/registry_dict_win.cc
|
| @@ -136,7 +136,7 @@ scoped_ptr<base::Value> ConvertValue(const base::Value& value,
|
|
|
| bool CaseInsensitiveStringCompare::operator()(const std::string& a,
|
| const std::string& b) const {
|
| - return base::strcasecmp(a.c_str(), b.c_str()) < 0;
|
| + return base::CompareCaseInsensitiveASCII(a, b) < 0;
|
| }
|
|
|
| RegistryDict::RegistryDict() {}
|
|
|