Index: chrome/browser/media_galleries/imported_media_gallery_registry.cc |
diff --git a/chrome/browser/media_galleries/imported_media_gallery_registry.cc b/chrome/browser/media_galleries/imported_media_gallery_registry.cc |
index 5acc6b25b5d9da867edaa8a4fa2d280ed1f6d4d5..a1c6cf4717011b76c960dc1c6ac259fc7b486969 100644 |
--- a/chrome/browser/media_galleries/imported_media_gallery_registry.cc |
+++ b/chrome/browser/media_galleries/imported_media_gallery_registry.cc |
@@ -17,7 +17,7 @@ |
#include "webkit/common/fileapi/file_system_mount_option.h" |
using base::Bind; |
-using fileapi::ExternalMountPoints; |
+using storage::ExternalMountPoints; |
namespace { |
@@ -55,7 +55,9 @@ bool ImportedMediaGalleryRegistry::RegisterPicasaFilesystemOnUIThread( |
if (root.empty()) |
return false; |
result = ExternalMountPoints::GetSystemInstance()->RegisterFileSystem( |
- fs_name, fileapi::kFileSystemTypePicasa, fileapi::FileSystemMountOption(), |
+ fs_name, |
+ storage::kFileSystemTypePicasa, |
+ storage::FileSystemMountOption(), |
root.AppendASCII("picasa")); |
if (!result) |
return result; |
@@ -90,7 +92,9 @@ bool ImportedMediaGalleryRegistry::RegisterITunesFilesystemOnUIThread( |
if (root.empty()) |
return false; |
result = ExternalMountPoints::GetSystemInstance()->RegisterFileSystem( |
- fs_name, fileapi::kFileSystemTypeItunes, fileapi::FileSystemMountOption(), |
+ fs_name, |
+ storage::kFileSystemTypeItunes, |
+ storage::FileSystemMountOption(), |
root.AppendASCII("itunes")); |
if (!result) |
return result; |
@@ -127,7 +131,9 @@ bool ImportedMediaGalleryRegistry::RegisterIPhotoFilesystemOnUIThread( |
if (root.empty()) |
return false; |
result = ExternalMountPoints::GetSystemInstance()->RegisterFileSystem( |
- fs_name, fileapi::kFileSystemTypeIphoto, fileapi::FileSystemMountOption(), |
+ fs_name, |
+ storage::kFileSystemTypeIphoto, |
+ storage::FileSystemMountOption(), |
root.AppendASCII("iphoto")); |
if (!result) |
return result; |