| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
| 14 #include "chrome/browser/drive/drive_notification_observer.h" | |
| 15 #include "chrome/browser/drive/drive_service_interface.h" | |
| 16 #include "chrome/browser/sync_file_system/drive_backend/callback_tracker.h" | 14 #include "chrome/browser/sync_file_system/drive_backend/callback_tracker.h" |
| 17 #include "chrome/browser/sync_file_system/local_change_processor.h" | 15 #include "chrome/browser/sync_file_system/local_change_processor.h" |
| 18 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" | 16 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" |
| 19 #include "chrome/browser/sync_file_system/sync_action.h" | 17 #include "chrome/browser/sync_file_system/sync_action.h" |
| 20 #include "chrome/browser/sync_file_system/sync_direction.h" | 18 #include "chrome/browser/sync_file_system/sync_direction.h" |
| 19 #include "components/drive/drive_notification_observer.h" |
| 20 #include "components/drive/service/drive_service_interface.h" |
| 21 #include "components/signin/core/browser/signin_manager_base.h" | 21 #include "components/signin/core/browser/signin_manager_base.h" |
| 22 #include "net/base/network_change_notifier.h" | 22 #include "net/base/network_change_notifier.h" |
| 23 | 23 |
| 24 class ExtensionServiceInterface; | 24 class ExtensionServiceInterface; |
| 25 class OAuth2TokenService; | 25 class OAuth2TokenService; |
| 26 | 26 |
| 27 namespace base { | 27 namespace base { |
| 28 class SequencedTaskRunner; | 28 class SequencedTaskRunner; |
| 29 } | 29 } |
| 30 | 30 |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 CallbackTracker callback_tracker_; | 229 CallbackTracker callback_tracker_; |
| 230 | 230 |
| 231 base::WeakPtrFactory<SyncEngine> weak_ptr_factory_; | 231 base::WeakPtrFactory<SyncEngine> weak_ptr_factory_; |
| 232 DISALLOW_COPY_AND_ASSIGN(SyncEngine); | 232 DISALLOW_COPY_AND_ASSIGN(SyncEngine); |
| 233 }; | 233 }; |
| 234 | 234 |
| 235 } // namespace drive_backend | 235 } // namespace drive_backend |
| 236 } // namespace sync_file_system | 236 } // namespace sync_file_system |
| 237 | 237 |
| 238 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_H_ | 238 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_H_ |
| OLD | NEW |