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

Unified Diff: chrome/browser/chromeos/file_system_provider/provided_file_system.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: chrome/browser/chromeos/file_system_provider/provided_file_system.h
diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system.h b/chrome/browser/chromeos/file_system_provider/provided_file_system.h
index 95fc33d41e7bef5bcc25c04a0dec43e226cd72eb..a4b8ec6131d3b2a7d01bb929d8d35057af2e1593 100644
--- a/chrome/browser/chromeos/file_system_provider/provided_file_system.h
+++ b/chrome/browser/chromeos/file_system_provider/provided_file_system.h
@@ -9,7 +9,7 @@
#include "chrome/browser/chromeos/file_system_provider/provided_file_system_info.h"
#include "chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h"
#include "chrome/browser/chromeos/file_system_provider/request_manager.h"
-#include "webkit/browser/fileapi/async_file_util.h"
+#include "storage/browser/fileapi/async_file_util.h"
class Profile;
@@ -40,18 +40,18 @@ class ProvidedFileSystem : public ProvidedFileSystemInterface {
// ProvidedFileSystemInterface overrides.
virtual void RequestUnmount(
- const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
+ const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
virtual void GetMetadata(const base::FilePath& entry_path,
const GetMetadataCallback& callback) OVERRIDE;
virtual void ReadDirectory(
const base::FilePath& directory_path,
- const fileapi::AsyncFileUtil::ReadDirectoryCallback& callback) OVERRIDE;
+ const storage::AsyncFileUtil::ReadDirectoryCallback& callback) OVERRIDE;
virtual void OpenFile(const base::FilePath& file_path,
OpenFileMode mode,
const OpenFileCallback& callback) OVERRIDE;
virtual void CloseFile(
int file_handle,
- const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
+ const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
virtual void ReadFile(int file_handle,
net::IOBuffer* buffer,
int64 offset,
@@ -61,32 +61,32 @@ class ProvidedFileSystem : public ProvidedFileSystemInterface {
const base::FilePath& directory_path,
bool exclusive,
bool recursive,
- const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
+ const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
virtual void DeleteEntry(
const base::FilePath& entry_path,
bool recursive,
- const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
+ const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
virtual void CreateFile(
const base::FilePath& file_path,
- const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
+ const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
virtual void CopyEntry(
const base::FilePath& source_path,
const base::FilePath& target_path,
- const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
+ const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
virtual void MoveEntry(
const base::FilePath& source_path,
const base::FilePath& target_path,
- const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
+ const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
virtual void Truncate(
const base::FilePath& file_path,
int64 length,
- const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
+ const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
virtual void WriteFile(
int file_handle,
net::IOBuffer* buffer,
int64 offset,
int length,
- const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
+ const storage::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const OVERRIDE;
virtual RequestManager* GetRequestManager() OVERRIDE;
virtual base::WeakPtr<ProvidedFileSystemInterface> GetWeakPtr() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698