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

Unified Diff: chrome/browser/local_discovery/storage/privet_filesystem_operations.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/local_discovery/storage/privet_filesystem_operations.h
diff --git a/chrome/browser/local_discovery/storage/privet_filesystem_operations.h b/chrome/browser/local_discovery/storage/privet_filesystem_operations.h
index 6701db4592c2568b0b020401c3bdbc0bd2f036eb..c1a92b5ce28692aeb9be5c5143d77c5c519645bb 100644
--- a/chrome/browser/local_discovery/storage/privet_filesystem_operations.h
+++ b/chrome/browser/local_discovery/storage/privet_filesystem_operations.h
@@ -44,11 +44,11 @@ class PrivetFileSystemOperationFactory
content::BrowserContext* browser_context);
virtual ~PrivetFileSystemOperationFactory();
- void GetFileInfo(const fileapi::FileSystemURL& url,
- const fileapi::AsyncFileUtil::GetFileInfoCallback& callback);
+ void GetFileInfo(const storage::FileSystemURL& url,
+ const storage::AsyncFileUtil::GetFileInfoCallback& callback);
void ReadDirectory(
- const fileapi::FileSystemURL& url,
- const fileapi::AsyncFileUtil::ReadDirectoryCallback& callback);
+ const storage::FileSystemURL& url,
+ const storage::AsyncFileUtil::ReadDirectoryCallback& callback);
base::WeakPtr<PrivetFileSystemOperationFactory> GetWeakPtr() {
return weak_factory_.GetWeakPtr();
@@ -114,7 +114,7 @@ class PrivetFileSystemListOperation
content::BrowserContext* browser_context,
PrivetFileSystemAsyncOperationContainer* container,
PrivetFileSystemAttributeCache* attribute_cache,
- const fileapi::AsyncFileUtil::ReadDirectoryCallback& callback);
+ const storage::AsyncFileUtil::ReadDirectoryCallback& callback);
virtual ~PrivetFileSystemListOperation();
virtual void Start() OVERRIDE;
@@ -127,14 +127,14 @@ class PrivetFileSystemListOperation
void SignalError();
void TriggerCallbackAndDestroy(
base::File::Error result,
- const fileapi::AsyncFileUtil::EntryList& file_list,
+ const storage::AsyncFileUtil::EntryList& file_list,
bool has_more);
PrivetFileSystemAsyncOperationUtil core_;
base::FilePath full_path_;
PrivetFileSystemAsyncOperationContainer* container_;
PrivetFileSystemAttributeCache* attribute_cache_;
- fileapi::AsyncFileUtil::ReadDirectoryCallback callback_;
+ storage::AsyncFileUtil::ReadDirectoryCallback callback_;
scoped_ptr<PrivetJSONOperation> list_operation_;
};
@@ -148,7 +148,7 @@ class PrivetFileSystemDetailsOperation
content::BrowserContext* browser_context,
PrivetFileSystemAsyncOperationContainer* container,
PrivetFileSystemAttributeCache* attribute_cache,
- const fileapi::AsyncFileUtil::GetFileInfoCallback& callback);
+ const storage::AsyncFileUtil::GetFileInfoCallback& callback);
virtual ~PrivetFileSystemDetailsOperation();
virtual void Start() OVERRIDE;
@@ -166,7 +166,7 @@ class PrivetFileSystemDetailsOperation
base::FilePath full_path_;
PrivetFileSystemAsyncOperationContainer* container_;
PrivetFileSystemAttributeCache* attribute_cache_;
- fileapi::AsyncFileUtil::GetFileInfoCallback callback_;
+ storage::AsyncFileUtil::GetFileInfoCallback callback_;
scoped_ptr<PrivetJSONOperation> list_operation_;
};

Powered by Google App Engine
This is Rietveld 408576698