| 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> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 15 #include "chrome/browser/sync_file_system/drive_backend/callback_tracker.h" | 15 #include "chrome/browser/sync_file_system/drive_backend/callback_tracker.h" |
| 16 #include "chrome/browser/sync_file_system/local_change_processor.h" | 16 #include "chrome/browser/sync_file_system/local_change_processor.h" |
| 17 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" | 17 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" |
| 18 #include "chrome/browser/sync_file_system/sync_action.h" | 18 #include "chrome/browser/sync_file_system/sync_action.h" |
| 19 #include "chrome/browser/sync_file_system/sync_direction.h" | 19 #include "chrome/browser/sync_file_system/sync_direction.h" |
| 20 #include "components/drive/drive_notification_observer.h" | 20 #include "components/drive/drive_notification_observer.h" |
| 21 #include "components/drive/service/drive_service_interface.h" | 21 #include "components/drive/service/drive_service_interface.h" |
| 22 #include "components/signin/core/browser/signin_manager_base.h" | 22 #include "components/signin/core/browser/signin_manager_base.h" |
| 23 #include "net/base/network_change_notifier.h" | 23 #include "net/base/network_change_notifier.h" |
| 24 | 24 |
| 25 class ExtensionServiceInterface; | 25 class ExtensionServiceInterface; |
| 26 class OAuth2TokenService; | 26 class OAuth2TokenService; |
| 27 | 27 |
| 28 namespace base { | 28 namespace base { |
| 29 class SequencedTaskRunner; | 29 class SequencedTaskRunner; |
| 30 class SequencedWorkerPool; |
| 30 } | 31 } |
| 31 | 32 |
| 32 namespace drive { | 33 namespace drive { |
| 33 class DriveServiceInterface; | 34 class DriveServiceInterface; |
| 34 class DriveNotificationManager; | 35 class DriveNotificationManager; |
| 35 class DriveUploaderInterface; | 36 class DriveUploaderInterface; |
| 36 } | 37 } |
| 37 | 38 |
| 38 namespace leveldb { | 39 namespace leveldb { |
| 39 class Env; | 40 class Env; |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 CallbackTracker callback_tracker_; | 231 CallbackTracker callback_tracker_; |
| 231 | 232 |
| 232 base::WeakPtrFactory<SyncEngine> weak_ptr_factory_; | 233 base::WeakPtrFactory<SyncEngine> weak_ptr_factory_; |
| 233 DISALLOW_COPY_AND_ASSIGN(SyncEngine); | 234 DISALLOW_COPY_AND_ASSIGN(SyncEngine); |
| 234 }; | 235 }; |
| 235 | 236 |
| 236 } // namespace drive_backend | 237 } // namespace drive_backend |
| 237 } // namespace sync_file_system | 238 } // namespace sync_file_system |
| 238 | 239 |
| 239 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_H_ | 240 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_H_ |
| OLD | NEW |