Index: chrome/browser/enumerate_modules_model_win.cc |
diff --git a/chrome/browser/enumerate_modules_model_win.cc b/chrome/browser/enumerate_modules_model_win.cc |
index 15c53dc689b59cccb8c174bebcacc1b8e2337692..4a23e1ddf37a4f7bcb0721a4dd221cf97e8bb83f 100644 |
--- a/chrome/browser/enumerate_modules_model_win.cc |
+++ b/chrome/browser/enumerate_modules_model_win.cc |
@@ -690,7 +690,7 @@ void ModuleEnumerator::CollapsePath(Module* entry) { |
for (PathMapping::const_iterator mapping = path_mapping_.begin(); |
mapping != path_mapping_.end(); ++mapping) { |
base::string16 prefix = mapping->first; |
- if (StartsWith(location, prefix, false)) { |
+ if (base::StartsWith(location, prefix, false)) { |
base::string16 new_location = mapping->second + |
location.substr(prefix.length() - 1); |
size_t length = new_location.length() - mapping->second.length(); |
@@ -734,8 +734,8 @@ void ModuleEnumerator::MatchAgainstBlacklist() { |
// for blacklisting individually. Mark them as suspicious if we haven't |
// classified them as bad yet. |
if (module->status == NOT_MATCHED || module->status == GOOD) { |
- if (StartsWith(module->location, L"%temp%", false) || |
- StartsWith(module->location, L"%tmp%", false)) { |
+ if (base::StartsWith(module->location, L"%temp%", false) || |
+ base::StartsWith(module->location, L"%tmp%", false)) { |
module->status = SUSPECTED_BAD; |
} |
} |