Index: chrome/browser/extensions/api/file_system/file_system_api.cc |
diff --git a/chrome/browser/extensions/api/file_system/file_system_api.cc b/chrome/browser/extensions/api/file_system/file_system_api.cc |
index 1622f1588a4e78322c54d78c08f69087734ae96e..8419930f7caf3f95ce596a884dab6bcd46fec7c7 100644 |
--- a/chrome/browser/extensions/api/file_system/file_system_api.cc |
+++ b/chrome/browser/extensions/api/file_system/file_system_api.cc |
@@ -59,7 +59,7 @@ |
using apps::SavedFileEntry; |
using apps::SavedFilesService; |
using apps::AppWindow; |
-using fileapi::IsolatedContext; |
+using storage::IsolatedContext; |
const char kInvalidCallingPage[] = "Invalid calling page. This function can't " |
"be called from a background page."; |
@@ -349,7 +349,7 @@ bool FileSystemIsWritableEntryFunction::RunSync() { |
EXTENSION_FUNCTION_VALIDATE(args_->GetString(1, &filesystem_path)); |
std::string filesystem_id; |
- if (!fileapi::CrackIsolatedFileSystemName(filesystem_name, &filesystem_id)) { |
+ if (!storage::CrackIsolatedFileSystemName(filesystem_name, &filesystem_id)) { |
error_ = app_file_handler_util::kInvalidParameters; |
return false; |
} |
@@ -570,10 +570,10 @@ void FileSystemChooseEntryFunction::RegisterTempExternalFileSystemForTest( |
// For testing on Chrome OS, where to deal with remote and local paths |
// smoothly, all accessed paths need to be registered in the list of |
// external mount points. |
- fileapi::ExternalMountPoints::GetSystemInstance()->RegisterFileSystem( |
+ storage::ExternalMountPoints::GetSystemInstance()->RegisterFileSystem( |
name, |
- fileapi::kFileSystemTypeNativeLocal, |
- fileapi::FileSystemMountOption(), |
+ storage::kFileSystemTypeNativeLocal, |
+ storage::FileSystemMountOption(), |
path); |
} |