Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(449)

Unified Diff: chrome/browser/importer/safari_importer.mm

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « chrome/browser/importer/firefox_profile_lock_unittest.cc ('k') | chrome/browser/importer/safari_importer_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698