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

Unified Diff: chrome/browser/chromeos/file_system_provider/fake_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/fake_provided_file_system.h
diff --git a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
index 830969ef72d203ab199546b907c1767344fc1943..b4de08ad0fc842db8c41fb99611b1b1a6a3bc8cb 100644
--- a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
+++ b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h
@@ -68,20 +68,20 @@ class FakeProvidedFileSystem : 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 ProvidedFileSystemInterface::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,
@@ -91,32 +91,32 @@ class FakeProvidedFileSystem : 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