summaryrefslogtreecommitdiffstats
path: root/tools/memory_watcher/memory_watcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/memory_watcher/memory_watcher.cc')
-rw-r--r--tools/memory_watcher/memory_watcher.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/memory_watcher/memory_watcher.cc b/tools/memory_watcher/memory_watcher.cc
index 4743a37..38e933c 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_)));
}
}