Index: chrome/browser/importer/safari_importer.mm |
diff --git a/chrome/browser/importer/safari_importer.mm b/chrome/browser/importer/safari_importer.mm |
index 7bb0cd438977d7681a3ab2de94f42e2d6d98e8a4..eb04d67b5bdde22f9f134d4b0dc791090e9e6155 100644 |
--- a/chrome/browser/importer/safari_importer.mm |
+++ b/chrome/browser/importer/safari_importer.mm |
@@ -61,9 +61,9 @@ bool SafariImporter::CanImport(const base::FilePath& library_dir, |
base::FilePath bookmarks_path = safari_dir.Append("Bookmarks.plist"); |
base::FilePath history_path = safari_dir.Append("History.plist"); |
- if (file_util::PathExists(bookmarks_path)) |
+ if (base::PathExists(bookmarks_path)) |
*services_supported |= importer::FAVORITES; |
- if (file_util::PathExists(history_path)) |
+ if (base::PathExists(history_path)) |
*services_supported |= importer::HISTORY; |
return *services_supported != importer::NONE; |