Index: chrome/installer/util/shell_util.cc |
diff --git a/chrome/installer/util/shell_util.cc b/chrome/installer/util/shell_util.cc |
index f5b8544c66dcea40ed1bed7b463a60621b82d0a9..9530126b7318169759180891b14a698b21a43ce7 100644 |
--- a/chrome/installer/util/shell_util.cc |
+++ b/chrome/installer/util/shell_util.cc |
@@ -1328,7 +1328,7 @@ bool RemoveShortcutFolderIfEmpty(ShellUtil::ShortcutLocation location, |
LOG(WARNING) << "Cannot find path at location " << location; |
return false; |
} |
- if (file_util::IsDirectoryEmpty(shortcut_folder) && |
+ if (base::IsDirectoryEmpty(shortcut_folder) && |
!base::DeleteFile(shortcut_folder, true)) { |
LOG(ERROR) << "Cannot remove folder " << shortcut_folder.value(); |
return false; |