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

Unified Diff: chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.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/sync_file_system/drive_backend/remote_to_local_syncer.h
diff --git a/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h b/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h
index d24f39936a931ff6d2ba68dba391319328b2b67f..9bd7ac212a229da3d263854fae24b9e098eebb8b 100644
--- a/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h
+++ b/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.h
@@ -29,7 +29,7 @@ class FileResource;
class ResourceEntry;
}
-namespace webkit_blob {
+namespace storage {
class ScopedFile;
}
@@ -49,7 +49,7 @@ class RemoteToLocalSyncer : public SyncTask {
virtual void RunPreflight(scoped_ptr<SyncTaskToken> token) OVERRIDE;
void RunExclusive(scoped_ptr<SyncTaskToken> token);
- const fileapi::FileSystemURL& url() const { return url_; }
+ const storage::FileSystemURL& url() const { return url_; }
SyncAction sync_action() const { return sync_action_; }
bool is_sync_root_deletion() const { return sync_root_deletion_; }
@@ -174,11 +174,11 @@ class RemoteToLocalSyncer : public SyncTask {
void DeleteLocalFile(scoped_ptr<SyncTaskToken> token);
void DownloadFile(scoped_ptr<SyncTaskToken> token);
void DidDownloadFile(scoped_ptr<SyncTaskToken> token,
- webkit_blob::ScopedFile file,
+ storage::ScopedFile file,
google_apis::GDataErrorCode error,
const base::FilePath&);
void DidApplyDownload(scoped_ptr<SyncTaskToken> token,
- webkit_blob::ScopedFile,
+ storage::ScopedFile,
SyncStatusCode status);
void CreateFolder(scoped_ptr<SyncTaskToken> token);
@@ -196,7 +196,7 @@ class RemoteToLocalSyncer : public SyncTask {
scoped_ptr<FileTracker> dirty_tracker_;
scoped_ptr<FileMetadata> remote_metadata_;
- fileapi::FileSystemURL url_;
+ storage::FileSystemURL url_;
SyncAction sync_action_;
bool prepared_;

Powered by Google App Engine
This is Rietveld 408576698