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

Unified Diff: chrome/browser/importer/firefox_importer_utils_mac.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/firefox_importer_utils_mac.mm
diff --git a/chrome/browser/importer/firefox_importer_utils_mac.mm b/chrome/browser/importer/firefox_importer_utils_mac.mm
index 6aa90407264d139dd5a9464294d012306be3a13b..10171fdc310e1aa0e8a8a143b6141bcbd4a62dd0 100644
--- a/chrome/browser/importer/firefox_importer_utils_mac.mm
+++ b/chrome/browser/importer/firefox_importer_utils_mac.mm
@@ -18,7 +18,7 @@ base::FilePath GetProfilesINI() {
}
base::FilePath ini_file =
app_data_path.Append("Firefox").Append("profiles.ini");
- if (!file_util::PathExists(ini_file)) {
+ if (!base::PathExists(ini_file)) {
return base::FilePath();
}
return ini_file;
« no previous file with comments | « chrome/browser/importer/firefox_importer_utils_linux.cc ('k') | chrome/browser/importer/firefox_importer_utils_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698