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

Unified Diff: chrome/browser/media_galleries/fileapi/itunes_finder_win.cc

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/media_galleries/fileapi/itunes_finder_win.cc
diff --git a/chrome/browser/media_galleries/fileapi/itunes_finder_win.cc b/chrome/browser/media_galleries/fileapi/itunes_finder_win.cc
index 40016a5e6699197b4d215a4abe1380b7bbe46dda..ea02812aa5eda1f3f39f149b18abe37e6d4e2361 100644
--- a/chrome/browser/media_galleries/fileapi/itunes_finder_win.cc
+++ b/chrome/browser/media_galleries/fileapi/itunes_finder_win.cc
@@ -70,7 +70,7 @@ void ITunesFinderWin::TryDefaultLocation() {
base::FilePath library_file =
music_dir.AppendASCII("iTunes").AppendASCII("iTunes Music Library.xml");
- if (!file_util::PathExists(library_file)) {
+ if (!base::PathExists(library_file)) {
PostResultToUIThread(std::string());
return;
}
@@ -81,7 +81,7 @@ void ITunesFinderWin::FinishedParsingPrefXML(
const base::FilePath& library_file) {
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::FILE));
- if (library_file.empty() || !file_util::PathExists(library_file)) {
+ if (library_file.empty() || !base::PathExists(library_file)) {
TryDefaultLocation();
return;
}
« no previous file with comments | « chrome/browser/media/webrtc_log_uploader.cc ('k') | chrome/browser/media_galleries/fileapi/native_media_file_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698