Index: content/renderer/pepper/pepper_file_system_host.cc |
diff --git a/content/renderer/pepper/pepper_file_system_host.cc b/content/renderer/pepper/pepper_file_system_host.cc |
index 229428dce46d8c3e5fdfc9e8659c1fc3c957c9f6..764ed21fcd2bb9a292b1927ad3281ad115392498 100644 |
--- a/content/renderer/pepper/pepper_file_system_host.cc |
+++ b/content/renderer/pepper/pepper_file_system_host.cc |
@@ -21,7 +21,7 @@ |
#include "third_party/WebKit/public/web/WebDocument.h" |
#include "third_party/WebKit/public/web/WebFrame.h" |
#include "third_party/WebKit/public/web/WebView.h" |
-#include "webkit/common/fileapi/file_system_util.h" |
+#include "storage/common/fileapi/file_system_util.h" |
namespace content { |
@@ -92,9 +92,9 @@ int32_t PepperFileSystemHost::OnHostMsgOpen( |
return PP_ERROR_INPROGRESS; |
called_open_ = true; |
- fileapi::FileSystemType file_system_type = |
+ storage::FileSystemType file_system_type = |
PepperFileSystemTypeToFileSystemType(type_); |
- if (file_system_type == fileapi::kFileSystemTypeUnknown) |
+ if (file_system_type == storage::kFileSystemTypeUnknown) |
return PP_ERROR_FAILED; |
GURL document_url = renderer_ppapi_host_->GetDocumentURL(pp_instance()); |
@@ -124,7 +124,7 @@ int32_t PepperFileSystemHost::OnHostMsgInitIsolatedFileSystem( |
called_open_ = true; |
// Do a sanity check. |
- if (!fileapi::ValidateIsolatedFileSystemId(fsid)) |
+ if (!storage::ValidateIsolatedFileSystemId(fsid)) |
return PP_ERROR_BADARGUMENT; |
RenderView* view = |
@@ -136,7 +136,7 @@ int32_t PepperFileSystemHost::OnHostMsgInitIsolatedFileSystem( |
const std::string root_name = ppapi::IsolatedFileSystemTypeToRootName(type); |
if (root_name.empty()) |
return PP_ERROR_BADARGUMENT; |
- root_url_ = GURL(fileapi::GetIsolatedFileSystemRootURIString( |
+ root_url_ = GURL(storage::GetIsolatedFileSystemRootURIString( |
url.GetOrigin(), fsid, root_name)); |
opened_ = true; |
return PP_OK; |