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

Unified Diff: chrome/browser/sync_file_system/local_file_sync_service.h

Issue 12315004: Migrated sync_file_type and file_change from namespace fileapi to sync_file_system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 10 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/local_file_sync_service.h
diff --git a/chrome/browser/sync_file_system/local_file_sync_service.h b/chrome/browser/sync_file_system/local_file_sync_service.h
index 4cad36b0922a748b7df22ede3c0f53085b9a49c1..df9978c302830e1133712dc538c38414e984f35b 100644
--- a/chrome/browser/sync_file_system/local_file_sync_service.h
+++ b/chrome/browser/sync_file_system/local_file_sync_service.h
@@ -23,7 +23,6 @@ class GURL;
class Profile;
namespace fileapi {
-class FileChange;
class FileSystemContext;
class LocalFileSyncContext;
struct LocalFileSyncInfo;
@@ -31,6 +30,7 @@ struct LocalFileSyncInfo;
namespace sync_file_system {
+class FileChange;
class LocalChangeProcessor;
// Maintains local file change tracker and sync status.
@@ -108,7 +108,7 @@ class LocalFileSyncService
const std::string& service_name,
const PrepareChangeCallback& callback) OVERRIDE;
virtual void ApplyRemoteChange(
- const fileapi::FileChange& change,
+ const FileChange& change,
const base::FilePath& local_path,
const fileapi::FileSystemURL& url,
const fileapi::SyncStatusCallback& callback) OVERRIDE;
@@ -117,7 +117,7 @@ class LocalFileSyncService
const base::Closure& completion_callback) OVERRIDE;
virtual void RecordFakeLocalChange(
const fileapi::FileSystemURL& url,
- const fileapi::FileChange& change,
+ const FileChange& change,
const fileapi::SyncStatusCallback& callback) OVERRIDE;
// LocalOriginChangeObserver override.
@@ -185,8 +185,8 @@ class LocalFileSyncService
void ProcessNextChangeForURL(
LocalChangeProcessor* processor,
const fileapi::LocalFileSyncInfo& sync_file_info,
- const fileapi::FileChange& last_change,
- const fileapi::FileChangeList& changes,
+ const FileChange& last_change,
+ const FileChangeList& changes,
fileapi::SyncStatusCode status);
Profile* profile_;
« no previous file with comments | « chrome/browser/sync_file_system/local_change_processor.h ('k') | chrome/browser/sync_file_system/local_file_sync_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698