summaryrefslogtreecommitdiffstats
path: root/chrome_frame
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame')
-rw-r--r--chrome_frame/test/dll_redirector_loading_test.cc4
-rw-r--r--chrome_frame/test/reliability/page_load_test.cc2
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome_frame/test/dll_redirector_loading_test.cc b/chrome_frame/test/dll_redirector_loading_test.cc
index b0c5760..b3cea3d 100644
--- a/chrome_frame/test/dll_redirector_loading_test.cc
+++ b/chrome_frame/test/dll_redirector_loading_test.cc
@@ -93,8 +93,8 @@ class DllRedirectorLoadingTest : public testing::Test {
ASSERT_TRUE(file_util::CreateDirectory(new_version_dir));
new_chrome_frame_dll_ =
new_version_dir.Append(build_chrome_frame_dll.BaseName());
- ASSERT_TRUE(file_util::Move(temporary_new_chrome_frame_dll,
- new_chrome_frame_dll_));
+ ASSERT_TRUE(base::Move(temporary_new_chrome_frame_dll,
+ new_chrome_frame_dll_));
ASSERT_TRUE(file_util::PathExists(new_chrome_frame_dll_));
}
diff --git a/chrome_frame/test/reliability/page_load_test.cc b/chrome_frame/test/reliability/page_load_test.cc
index 101af0a..ffc4197 100644
--- a/chrome_frame/test/reliability/page_load_test.cc
+++ b/chrome_frame/test/reliability/page_load_test.cc
@@ -369,7 +369,7 @@ class PageLoadTest : public testing::Test {
if (!log_path.empty()) {
base::FilePath saved_log_file_path =
ConstructSavedDebugLogPath(log_path, index);
- if (file_util::Move(log_path, saved_log_file_path)) {
+ if (base::Move(log_path, saved_log_file_path)) {
log_file << " " << log_id << "=" << saved_log_file_path.value();
}
}