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_FILE_SYNC_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_FILE_SYNC_SERVICE_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_FILE_SYNC_SERVICE_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_FILE_SYNC_SERVICE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "chrome/browser/sync_file_system/conflict_resolution_policy.h" | 11 #include "chrome/browser/sync_file_system/conflict_resolution_policy.h" |
12 #include "webkit/browser/fileapi/file_system_url.h" | 12 #include "webkit/browser/fileapi/file_system_url.h" |
13 #include "webkit/fileapi/syncable/sync_callbacks.h" | 13 #include "webkit/browser/fileapi/syncable/sync_callbacks.h" |
14 | 14 |
15 class GURL; | 15 class GURL; |
16 | 16 |
17 namespace sync_file_system { | 17 namespace sync_file_system { |
18 | 18 |
19 class FileStatusObserver; | 19 class FileStatusObserver; |
20 class LocalChangeProcessor; | 20 class LocalChangeProcessor; |
21 class RemoteChangeProcessor; | 21 class RemoteChangeProcessor; |
22 | 22 |
23 enum RemoteServiceState { | 23 enum RemoteServiceState { |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 // Gets the conflict resolution policy. | 156 // Gets the conflict resolution policy. |
157 virtual ConflictResolutionPolicy GetConflictResolutionPolicy() const = 0; | 157 virtual ConflictResolutionPolicy GetConflictResolutionPolicy() const = 0; |
158 | 158 |
159 private: | 159 private: |
160 DISALLOW_COPY_AND_ASSIGN(RemoteFileSyncService); | 160 DISALLOW_COPY_AND_ASSIGN(RemoteFileSyncService); |
161 }; | 161 }; |
162 | 162 |
163 } // namespace sync_file_system | 163 } // namespace sync_file_system |
164 | 164 |
165 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_FILE_SYNC_SERVICE_H_ | 165 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_REMOTE_FILE_SYNC_SERVICE_H_ |
OLD | NEW |