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

Unified Diff: content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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: content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h
diff --git a/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h b/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h
index 4214de017859edb7a892975a0dee323c924bc86d..8b88a42047d8cec439af1ec46a7123bd323b060c 100644
--- a/content/browser/renderer_host/pepper/pepper_internal_file_ref_backend.h
+++ b/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<fileapi::FileSystemContext> GetFileSystemContext() const;
+ scoped_refptr<storage::FileSystemContext> 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<PepperInternalFileRefBackend> weak_factory_;

Powered by Google App Engine
This is Rietveld 408576698