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

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

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build 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..a2c3bb630649337553f798e020cf7fde524b9805 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
@@ -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