Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3804)

Unified Diff: chrome/browser/component_updater/test/test_installer.cc

Issue 18383003: Move DeleteAfterReboot and Move to base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698