| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/callback_forward.h" | 9 #include "base/callback_forward.h" |
| 10 #include "webkit/fileapi/syncable/sync_callbacks.h" | 10 #include "webkit/browser/fileapi/syncable/sync_callbacks.h" |
| 11 #include "webkit/fileapi/syncable/sync_status_code.h" | 11 #include "webkit/browser/fileapi/syncable/sync_status_code.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class FilePath; | 14 class FilePath; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace fileapi { | 17 namespace fileapi { |
| 18 class FileSystemURL; | 18 class FileSystemURL; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace sync_file_system { | 21 namespace sync_file_system { |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 const FileChange& change, | 83 const FileChange& change, |
| 84 const SyncStatusCallback& callback) = 0; | 84 const SyncStatusCallback& callback) = 0; |
| 85 | 85 |
| 86 private: | 86 private: |
| 87 DISALLOW_COPY_AND_ASSIGN(RemoteChangeProcessor); | 87 DISALLOW_COPY_AND_ASSIGN(RemoteChangeProcessor); |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 } // namespace sync_file_system | 90 } // namespace sync_file_system |
| 91 | 91 |
| 92 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_ | 92 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_ |
| OLD | NEW |