Index: chrome/installer/setup/uninstall.cc |
diff --git a/chrome/installer/setup/uninstall.cc b/chrome/installer/setup/uninstall.cc |
index 460c4905ed7ba74bbab4ce8dfa03b752503aa53f..de4f3f764ecdc84647404728b9f7f729580ec283 100644 |
--- a/chrome/installer/setup/uninstall.cc |
+++ b/chrome/installer/setup/uninstall.cc |
@@ -447,7 +447,7 @@ bool ScheduleParentAndGrandparentForDeletion(const base::FilePath& path) { |
// directory is deleted, DELETE_NOT_EMPTY if it is not empty, and DELETE_FAILED |
// otherwise. |
DeleteResult DeleteEmptyDir(const base::FilePath& path) { |
- if (!file_util::IsDirectoryEmpty(path)) |
+ if (!base::IsDirectoryEmpty(path)) |
return DELETE_NOT_EMPTY; |
if (base::DeleteFile(path, true)) |