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

Unified Diff: chrome/browser/sync_file_system/sync_file_system_service.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/sync_file_system/sync_file_system_service.h
diff --git a/chrome/browser/sync_file_system/sync_file_system_service.h b/chrome/browser/sync_file_system/sync_file_system_service.h
index 54dabac181a528c316960da28e0cd48b87ef08ff..382ff7dc1a49b51b45c9f36709238c92e6e43527 100644
--- a/chrome/browser/sync_file_system/sync_file_system_service.h
+++ b/chrome/browser/sync_file_system/sync_file_system_service.h
@@ -30,7 +30,7 @@
class Profile;
class ProfileSyncServiceBase;
-namespace fileapi {
+namespace storage {
class FileSystemContext;
}
@@ -56,19 +56,17 @@ class SyncFileSystemService
// KeyedService implementation.
virtual void Shutdown() OVERRIDE;
- void InitializeForApp(
- fileapi::FileSystemContext* file_system_context,
- const GURL& app_origin,
- const SyncStatusCallback& callback);
+ void InitializeForApp(storage::FileSystemContext* file_system_context,
+ const GURL& app_origin,
+ const SyncStatusCallback& callback);
void GetExtensionStatusMap(const ExtensionStatusMapCallback& callback);
void DumpFiles(const GURL& origin, const DumpFilesCallback& callback);
void DumpDatabase(const DumpFilesCallback& callback);
// Returns the file |url|'s sync status.
- void GetFileSyncStatus(
- const fileapi::FileSystemURL& url,
- const SyncFileStatusCallback& callback);
+ void GetFileSyncStatus(const storage::FileSystemURL& url,
+ const SyncFileStatusCallback& callback);
void AddSyncEventObserver(SyncEventObserver* observer);
void RemoveSyncEventObserver(SyncEventObserver* observer);
@@ -155,11 +153,10 @@ class SyncFileSystemService
virtual void OnStateChanged() OVERRIDE;
// SyncFileStatusObserver implementation.
- virtual void OnFileStatusChanged(
- const fileapi::FileSystemURL& url,
- SyncFileStatus sync_status,
- SyncAction action_taken,
- SyncDirection direction) OVERRIDE;
+ virtual void OnFileStatusChanged(const storage::FileSystemURL& url,
+ SyncFileStatus sync_status,
+ SyncAction action_taken,
+ SyncDirection direction) OVERRIDE;
// Check the profile's sync preference settings and call
// remote_file_service_->SetSyncEnabled() to update the status.
« no previous file with comments | « chrome/browser/sync_file_system/sync_file_metadata.h ('k') | chrome/browser/sync_file_system/sync_file_system_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698