| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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_DRIVE_BACKEND_SYNC_ENGINE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 namespace sync_file_system { | 46 namespace sync_file_system { |
| 47 | 47 |
| 48 class RemoteChangeProcessor; | 48 class RemoteChangeProcessor; |
| 49 class SyncFileSystemTest; | 49 class SyncFileSystemTest; |
| 50 | 50 |
| 51 namespace drive_backend { | 51 namespace drive_backend { |
| 52 | 52 |
| 53 class DriveServiceWrapper; | 53 class DriveServiceWrapper; |
| 54 class DriveUploaderWrapper; | 54 class DriveUploaderWrapper; |
| 55 class MetadataDatabase; | |
| 56 class RemoteChangeProcessorOnWorker; | 55 class RemoteChangeProcessorOnWorker; |
| 57 class RemoteChangeProcessorWrapper; | 56 class RemoteChangeProcessorWrapper; |
| 58 class SyncTaskManager; | |
| 59 class SyncWorkerInterface; | 57 class SyncWorkerInterface; |
| 60 | 58 |
| 61 class SyncEngine : public RemoteFileSyncService, | 59 class SyncEngine : public RemoteFileSyncService, |
| 62 public LocalChangeProcessor, | 60 public LocalChangeProcessor, |
| 63 public drive::DriveNotificationObserver, | 61 public drive::DriveNotificationObserver, |
| 64 public drive::DriveServiceObserver, | 62 public drive::DriveServiceObserver, |
| 65 public net::NetworkChangeNotifier::NetworkChangeObserver, | 63 public net::NetworkChangeNotifier::NetworkChangeObserver, |
| 66 public SigninManagerBase::Observer { | 64 public SigninManagerBase::Observer { |
| 67 public: | 65 public: |
| 68 typedef RemoteFileSyncService::Observer SyncServiceObserver; | 66 typedef RemoteFileSyncService::Observer SyncServiceObserver; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 CallbackTracker callback_tracker_; | 230 CallbackTracker callback_tracker_; |
| 233 | 231 |
| 234 base::WeakPtrFactory<SyncEngine> weak_ptr_factory_; | 232 base::WeakPtrFactory<SyncEngine> weak_ptr_factory_; |
| 235 DISALLOW_COPY_AND_ASSIGN(SyncEngine); | 233 DISALLOW_COPY_AND_ASSIGN(SyncEngine); |
| 236 }; | 234 }; |
| 237 | 235 |
| 238 } // namespace drive_backend | 236 } // namespace drive_backend |
| 239 } // namespace sync_file_system | 237 } // namespace sync_file_system |
| 240 | 238 |
| 241 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_H_ | 239 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_H_ |
| OLD | NEW |