summaryrefslogtreecommitdiffstats
path: root/chrome/browser/download/download_path_reservation_tracker.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/download/download_path_reservation_tracker.cc')
-rw-r--r--chrome/browser/download/download_path_reservation_tracker.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/download/download_path_reservation_tracker.cc b/chrome/browser/download/download_path_reservation_tracker.cc
index 554cc12..d241649 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;