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

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

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 years, 4 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_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.

Powered by Google App Engine
This is Rietveld 408576698