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

Unified Diff: chrome/browser/local_discovery/storage/privet_filesystem_operations.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/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..eb5a8430148358f7bf180d441ac17f29e8754331 100644
--- a/chrome/browser/local_discovery/storage/privet_filesystem_operations.h
+++ b/chrome/browser/local_discovery/storage/privet_filesystem_operations.h
@@ -14,8 +14,8 @@
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
#include "net/url_request/url_request_context.h"
-#include "webkit/browser/fileapi/async_file_util.h"
-#include "webkit/browser/fileapi/file_system_url.h"
+#include "storage/browser/fileapi/async_file_util.h"
+#include "storage/browser/fileapi/file_system_url.h"
namespace local_discovery {
@@ -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