diff options
Diffstat (limited to 'chrome/test/perf')
-rw-r--r-- | chrome/test/perf/generate_profile.cc | 2 | ||||
-rw-r--r-- | chrome/test/perf/memory_test.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/perf/generate_profile.cc b/chrome/test/perf/generate_profile.cc index d45dc38..b07f174 100644 --- a/chrome/test/perf/generate_profile.cc +++ b/chrome/test/perf/generate_profile.cc @@ -256,7 +256,7 @@ bool GenerateProfile(GenerateProfileTypes types, base::FilePath path = file_iterator.Next(); while (!path.empty()) { base::FilePath dst_file = dst_dir.Append(path.BaseName()); - file_util::Delete(dst_file, false); + base::Delete(dst_file, false); if (!file_util::CopyFile(path, dst_file)) { PLOG(ERROR) << "Copying file failed"; return false; diff --git a/chrome/test/perf/memory_test.cc b/chrome/test/perf/memory_test.cc index fae4a8c..af9564a 100644 --- a/chrome/test/perf/memory_test.cc +++ b/chrome/test/perf/memory_test.cc @@ -39,7 +39,7 @@ class MemoryTest : public UIPerfTest { virtual ~MemoryTest() { // Cleanup our temporary directory. if (cleanup_temp_dir_on_exit_) - file_util::Delete(temp_dir_, true); + base::Delete(temp_dir_, true); } // Called from SetUp() to determine the user data dir to copy. |