| 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" | |
| 9 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
| 9 #include "base/macros.h" |
| 10 #include "chrome/browser/sync_file_system/sync_callbacks.h" | 10 #include "chrome/browser/sync_file_system/sync_callbacks.h" |
| 11 #include "chrome/browser/sync_file_system/sync_status_code.h" | 11 #include "chrome/browser/sync_file_system/sync_status_code.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class FilePath; | 14 class FilePath; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace storage { | 17 namespace storage { |
| 18 class FileSystemURL; | 18 class FileSystemURL; |
| 19 } | 19 } |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 const FileChange& change, | 81 const FileChange& change, |
| 82 const SyncStatusCallback& callback) = 0; | 82 const SyncStatusCallback& callback) = 0; |
| 83 | 83 |
| 84 private: | 84 private: |
| 85 DISALLOW_COPY_AND_ASSIGN(RemoteChangeProcessor); | 85 DISALLOW_COPY_AND_ASSIGN(RemoteChangeProcessor); |
| 86 }; | 86 }; |
| 87 | 87 |
| 88 } // namespace sync_file_system | 88 } // namespace sync_file_system |
| 89 | 89 |
| 90 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_ | 90 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_CHANGE_PROCESSOR_H_ |
| OLD | NEW |