Index: chrome/browser/profiles/profile_shortcut_manager_win.cc |
diff --git a/chrome/browser/profiles/profile_shortcut_manager_win.cc b/chrome/browser/profiles/profile_shortcut_manager_win.cc |
index 754e5d6fe9a5666b99c49fcb37a5b147b917a6ca..239a54ed0e9c8d2d4af67366a425618ec4bd21fe 100644 |
--- a/chrome/browser/profiles/profile_shortcut_manager_win.cc |
+++ b/chrome/browser/profiles/profile_shortcut_manager_win.cc |
@@ -255,7 +255,7 @@ void ListDesktopShortcutsWithCommandLine(const base::FilePath& chrome_exe, |
// Renames the given desktop shortcut and informs the shell of this change. |
bool RenameDesktopShortcut(const base::FilePath& old_shortcut_path, |
const base::FilePath& new_shortcut_path) { |
- if (!file_util::Move(old_shortcut_path, new_shortcut_path)) |
+ if (!base::Move(old_shortcut_path, new_shortcut_path)) |
return false; |
// Notify the shell of the rename, which allows the icon to keep its position |