| 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;
|
| }
|
|
|