Index: chrome/browser/download/download_path_reservation_tracker.cc |
diff --git a/chrome/browser/download/download_path_reservation_tracker.cc b/chrome/browser/download/download_path_reservation_tracker.cc |
index 554cc122e79256789ec67e9ba1704172c7766ed8..d2416496afb820f0ab040ed1ba0e0d75f0d493ae 100644 |
--- a/chrome/browser/download/download_path_reservation_tracker.cc |
+++ b/chrome/browser/download/download_path_reservation_tracker.cc |
@@ -96,7 +96,7 @@ bool IsPathInUse(const base::FilePath& path) { |
return true; |
// If the path exists in the file system, then the path is in use. |
- if (file_util::PathExists(path)) |
+ if (base::PathExists(path)) |
return true; |
return false; |