| Index: chrome/browser/media_galleries/fileapi/itunes_data_provider.cc
|
| diff --git a/chrome/browser/media_galleries/fileapi/itunes_data_provider.cc b/chrome/browser/media_galleries/fileapi/itunes_data_provider.cc
|
| index c485df9e3d133c6ee810f6bd10823e7582441504..e09555198d73014c155bd29d4a814ada780ca379 100644
|
| --- a/chrome/browser/media_galleries/fileapi/itunes_data_provider.cc
|
| +++ b/chrome/browser/media_galleries/fileapi/itunes_data_provider.cc
|
| @@ -96,7 +96,7 @@ bool CheckLocaleStringAutoAddPath(
|
|
|
| base::FilePath localized_auto_add_path =
|
| media_path.Append(base::FilePath::FromUTF8Unsafe(it->second));
|
| - if (!fileapi::NativeFileUtil::DirectoryExists(localized_auto_add_path))
|
| + if (!storage::NativeFileUtil::DirectoryExists(localized_auto_add_path))
|
| return false;
|
|
|
| *result_path = localized_auto_add_path;
|
| @@ -113,7 +113,7 @@ base::FilePath GetAutoAddPath(const base::FilePath& library_path) {
|
| // Test 'universal' path first.
|
| base::FilePath universal_auto_add_path =
|
| media_path.AppendASCII("Automatically Add to iTunes.localized");
|
| - if (fileapi::NativeFileUtil::DirectoryExists(universal_auto_add_path))
|
| + if (storage::NativeFileUtil::DirectoryExists(universal_auto_add_path))
|
| return universal_auto_add_path;
|
|
|
| // Test user locale. Localized directory names encoded in UTF-8.
|
|
|