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

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: f 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..f6ba376fc13af6c7f56993f2d2ea588fd01f78d5 100644
--- a/chrome/browser/sync_file_system/local_file_sync_service.h
+++ b/chrome/browser/sync_file_system/local_file_sync_service.h
@@ -23,13 +23,13 @@ class GURL;
class Profile;
namespace fileapi {
-class FileChange;
class FileSystemContext;
class LocalFileSyncContext;
struct LocalFileSyncInfo;
}
namespace sync_file_system {
+class FileChange;
kinuko 2013/02/21 06:49:57 ditto
calvinlo 2013/02/21 07:13:27 Done.
class LocalChangeProcessor;
@@ -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_;

Powered by Google App Engine
This is Rietveld 408576698