Index: chrome/browser/component_updater/pnacl/pnacl_component_installer.cc |
diff --git a/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc b/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc |
index c90a0d92173168a2b3b876e9729ddb4fc029ce9d..628650f3ce7351acd2a569507f4465041b1f87de 100644 |
--- a/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc |
+++ b/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc |
@@ -42,7 +42,7 @@ const char kPnaclManifestName[] = "PNaCl Translator"; |
// Keep in sync with chrome/browser/nacl_host/nacl_file_host. |
std::string SanitizeForPath(const std::string& input) { |
std::string result; |
- ReplaceChars(input, "-", "_", &result); |
+ base::ReplaceChars(input, "-", "_", &result); |
return result; |
} |