| Index: chrome/browser/storage_monitor/media_storage_util.cc
|
| diff --git a/chrome/browser/storage_monitor/media_storage_util.cc b/chrome/browser/storage_monitor/media_storage_util.cc
|
| index 785440c470e40bb00bd0c4ff0a9c18ac49a0e559..76d39f703f54d1547a5743b02ef4dd59a2a57c86 100644
|
| --- a/chrome/browser/storage_monitor/media_storage_util.cc
|
| +++ b/chrome/browser/storage_monitor/media_storage_util.cc
|
| @@ -44,7 +44,7 @@ void ValidatePathOnFileThread(
|
| const base::Callback<void(bool)>& callback) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
|
| BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
|
| - base::Bind(callback, file_util::PathExists(path)));
|
| + base::Bind(callback, base::PathExists(path)));
|
| }
|
|
|
| typedef std::vector<StorageInfo> StorageInfoList;
|
| @@ -79,7 +79,7 @@ void FilterAttachedDevicesOnFileThread(MediaStorageUtil::DeviceIdSet* devices) {
|
| if (type == StorageInfo::FIXED_MASS_STORAGE ||
|
| type == StorageInfo::ITUNES ||
|
| type == StorageInfo::PICASA) {
|
| - if (!file_util::PathExists(base::FilePath::FromUTF8Unsafe(unique_id)))
|
| + if (!base::PathExists(base::FilePath::FromUTF8Unsafe(unique_id)))
|
| missing_devices.insert(*it);
|
| continue;
|
| }
|
|
|