Chromium Code Reviews| 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_; |