Index: chrome/browser/component_updater/test/test_installer.cc |
diff --git a/chrome/browser/component_updater/test/test_installer.cc b/chrome/browser/component_updater/test/test_installer.cc |
index 2dc29136be7b1053e908be102409e9ef4184fa53..3f9b0e0e6de00f5aa238b785ad7071b357037f04 100644 |
--- a/chrome/browser/component_updater/test/test_installer.cc |
+++ b/chrome/browser/component_updater/test/test_installer.cc |
@@ -65,7 +65,7 @@ bool VersionedTestInstaller::Install(const base::DictionaryValue& manifest, |
base::FilePath path; |
path = install_directory_.AppendASCII(version.GetString()); |
file_util::CreateDirectory(path.DirName()); |
- if (!file_util::Move(unpack_path, path)) |
+ if (!base::Move(unpack_path, path)) |
return false; |
current_version_ = version; |
++install_count_; |