X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fcontent%2Fbrowser%2Frenderer_host%2Fpepper%2Fpepper_internal_file_ref_backend.h;h=8b88a42047d8cec439af1ec46a7123bd323b060c;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=4214de017859edb7a892975a0dee323c924bc86d;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h b/src/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h index 4214de0..8b88a42 100644 --- a/src/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h +++ b/src/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h @@ -12,9 +12,9 @@ #include "ppapi/c/pp_resource.h" #include "ppapi/c/pp_time.h" #include "ppapi/host/ppapi_host.h" -#include "webkit/browser/fileapi/file_system_context.h" -#include "webkit/browser/fileapi/file_system_operation.h" -#include "webkit/browser/fileapi/file_system_url.h" +#include "storage/browser/fileapi/file_system_context.h" +#include "storage/browser/fileapi/file_system_operation.h" +#include "storage/browser/fileapi/file_system_url.h" namespace content { @@ -44,7 +44,7 @@ class PepperInternalFileRefBackend : public PepperFileRefBackend { OVERRIDE; virtual int32_t GetAbsolutePath(ppapi::host::ReplyMessageContext context) OVERRIDE; - virtual fileapi::FileSystemURL GetFileSystemURL() const OVERRIDE; + virtual storage::FileSystemURL GetFileSystemURL() const OVERRIDE; virtual base::FilePath GetExternalFilePath() const OVERRIDE; virtual int32_t CanRead() const OVERRIDE; @@ -64,12 +64,12 @@ class PepperInternalFileRefBackend : public PepperFileRefBackend { const base::File::Info& file_info); void ReadDirectoryComplete( ppapi::host::ReplyMessageContext context, - fileapi::FileSystemOperation::FileEntryList* accumulated_file_list, + storage::FileSystemOperation::FileEntryList* accumulated_file_list, base::File::Error error, - const fileapi::FileSystemOperation::FileEntryList& file_list, + const storage::FileSystemOperation::FileEntryList& file_list, bool has_more); - scoped_refptr GetFileSystemContext() const; + scoped_refptr GetFileSystemContext() const; ppapi::host::PpapiHost* host_; int render_process_id_; @@ -77,7 +77,7 @@ class PepperInternalFileRefBackend : public PepperFileRefBackend { PP_FileSystemType fs_type_; std::string path_; - mutable fileapi::FileSystemURL fs_url_; + mutable storage::FileSystemURL fs_url_; base::WeakPtrFactory weak_factory_;