| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_FAKE_REMOTE_CHANGE_PROCESSOR_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_FAKE_REMOTE_CHANGE_PROCESSOR_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_FAKE_REMOTE_CHANGE_PROCESSOR_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_FAKE_REMOTE_CHANGE_PROCESSOR_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "chrome/browser/sync_file_system/remote_change_processor.h" | 13 #include "chrome/browser/sync_file_system/remote_change_processor.h" |
| 14 #include "webkit/fileapi/syncable/sync_callbacks.h" | 14 #include "webkit/browser/fileapi/syncable/sync_callbacks.h" |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 class FilePath; | 17 class FilePath; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace fileapi { | 20 namespace fileapi { |
| 21 class FileSystemURL; | 21 class FileSystemURL; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace sync_file_system { | 24 namespace sync_file_system { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 // in chronological order, that is, the end of the vector represents the last | 58 // in chronological order, that is, the end of the vector represents the last |
| 59 // change. | 59 // change. |
| 60 URLToFileChangesMap applied_changes_; | 60 URLToFileChangesMap applied_changes_; |
| 61 | 61 |
| 62 DISALLOW_COPY_AND_ASSIGN(FakeRemoteChangeProcessor); | 62 DISALLOW_COPY_AND_ASSIGN(FakeRemoteChangeProcessor); |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace sync_file_system | 65 } // namespace sync_file_system |
| 66 | 66 |
| 67 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_FAKE_REMOTE_CHANGE_PROCESSOR_H_ | 67 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_FAKE_REMOTE_CHANGE_PROCESSOR_H_ |
| OLD | NEW |