Index: tools/memory_watcher/memory_watcher.cc |
diff --git a/tools/memory_watcher/memory_watcher.cc b/tools/memory_watcher/memory_watcher.cc |
index 4743a37840c867fadaa543537b8e9d38a3bdb8b4..38e933c7e78296b99992883b0152a636855b96fa 100644 |
--- a/tools/memory_watcher/memory_watcher.cc |
+++ b/tools/memory_watcher/memory_watcher.cc |
@@ -80,10 +80,10 @@ void MemoryWatcher::CloseLogFile() { |
if (file_ != NULL) { |
fclose(file_); |
file_ = NULL; |
- std::wstring tmp_name = ASCIIToWide(file_name_); |
+ std::wstring tmp_name = base::ASCIIToWide(file_name_); |
tmp_name += L".tmp"; |
base::Move(base::FilePath(tmp_name), |
- base::FilePath(ASCIIToWide(file_name_))); |
+ base::FilePath(base::ASCIIToWide(file_name_))); |
} |
} |