Commit 8dcaa6b4 authored by brettw@chromium.org's avatar brettw@chromium.org

Add missing base:: to StringToLowerASCII

TBR=sky

Review URL: https://codereview.chromium.org/445373004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288093 0039d316-1c4b-4281-b951-d872f2087c98
parent fdd8921b
......@@ -218,7 +218,7 @@ bool GetLoadedBlacklistedModules(std::vector<base::string16>* module_names) {
std::set<ModuleInfo>::const_iterator module_iter(module_info_set.begin());
for (; module_iter != module_info_set.end(); ++module_iter) {
base::string16 module_file_name(StringToLowerASCII(
base::string16 module_file_name(base::StringToLowerASCII(
base::FilePath(module_iter->name).BaseName().value()));
if (blacklist::GetBlacklistIndex(module_file_name.c_str()) != -1) {
module_names->push_back(module_iter->name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment