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

Unified Diff: chrome/browser/chromeos/fileapi/file_system_backend_delegate.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: chrome/browser/chromeos/fileapi/file_system_backend_delegate.h
diff --git a/chrome/browser/chromeos/fileapi/file_system_backend_delegate.h b/chrome/browser/chromeos/fileapi/file_system_backend_delegate.h
index 5fcda496c73ae43fb0bfb977aee77488648aef04..f083a91efef4e444f35a671bda8f563b9c2c5d73 100644
--- a/chrome/browser/chromeos/fileapi/file_system_backend_delegate.h
+++ b/chrome/browser/chromeos/fileapi/file_system_backend_delegate.h
@@ -13,16 +13,16 @@ namespace base {
class Time;
} // namespace base
-namespace fileapi {
+namespace storage {
class AsyncFileUtil;
class FileSystemContext;
class FileSystemURL;
class FileStreamWriter;
-} // namespace fileapi
+} // namespace storage
-namespace webkit_blob {
+namespace storage {
class FileStreamReader;
-} // namespace webkit_blob
+} // namespace storage
namespace chromeos {
@@ -33,21 +33,21 @@ class FileSystemBackendDelegate {
virtual ~FileSystemBackendDelegate() {}
// Called from FileSystemBackend::GetAsyncFileUtil().
- virtual fileapi::AsyncFileUtil* GetAsyncFileUtil(
- fileapi::FileSystemType type) = 0;
+ virtual storage::AsyncFileUtil* GetAsyncFileUtil(
+ storage::FileSystemType type) = 0;
// Called from FileSystemBackend::CreateFileStreamReader().
- virtual scoped_ptr<webkit_blob::FileStreamReader> CreateFileStreamReader(
- const fileapi::FileSystemURL& url,
+ virtual scoped_ptr<storage::FileStreamReader> CreateFileStreamReader(
+ const storage::FileSystemURL& url,
int64 offset,
const base::Time& expected_modification_time,
- fileapi::FileSystemContext* context) = 0;
+ storage::FileSystemContext* context) = 0;
// Called from FileSystemBackend::CreateFileStreamWriter().
- virtual scoped_ptr<fileapi::FileStreamWriter> CreateFileStreamWriter(
- const fileapi::FileSystemURL& url,
+ virtual scoped_ptr<storage::FileStreamWriter> CreateFileStreamWriter(
+ const storage::FileSystemURL& url,
int64 offset,
- fileapi::FileSystemContext* context) = 0;
+ storage::FileSystemContext* context) = 0;
};
} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698