| Index: chrome/browser/profile_resetter/automatic_profile_resetter_delegate.cc
|
| diff --git a/chrome/browser/profile_resetter/automatic_profile_resetter_delegate.cc b/chrome/browser/profile_resetter/automatic_profile_resetter_delegate.cc
|
| index b120f7cdcd4b3fe9f021e73c1328172cb3b4d364..b74329fde0ab1b262ee723894cebe826a8e5377d 100644
|
| --- a/chrome/browser/profile_resetter/automatic_profile_resetter_delegate.cc
|
| +++ b/chrome/browser/profile_resetter/automatic_profile_resetter_delegate.cc
|
| @@ -113,7 +113,7 @@ void ExtractLoadedModuleNameDigests(
|
| std::string module_name;
|
| if (!module_dictionary->GetString("name", &module_name))
|
| continue;
|
| - base::StringToLowerASCII(&module_name);
|
| + module_name = base::ToLowerASCII(module_name);
|
| module_name_digests->AppendString(base::MD5String(module_name));
|
| }
|
| }
|
|
|