| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_WORKER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_WORKER_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_WORKER_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_WORKER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 13 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 14 #include "chrome/browser/sync_file_system/drive_backend/sync_task_manager.h" | 15 #include "chrome/browser/sync_file_system/drive_backend/sync_task_manager.h" |
| 15 #include "chrome/browser/sync_file_system/drive_backend/sync_worker_interface.h" | 16 #include "chrome/browser/sync_file_system/drive_backend/sync_worker_interface.h" |
| 16 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" | 17 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" |
| 17 #include "chrome/browser/sync_file_system/sync_callbacks.h" | 18 #include "chrome/browser/sync_file_system/sync_callbacks.h" |
| 18 #include "chrome/browser/sync_file_system/task_logger.h" | 19 #include "chrome/browser/sync_file_system/task_logger.h" |
| 19 | 20 |
| 20 class ExtensionServiceInterface; | 21 class ExtensionServiceInterface; |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 base::SequenceChecker sequence_checker_; | 175 base::SequenceChecker sequence_checker_; |
| 175 | 176 |
| 176 base::WeakPtrFactory<SyncWorker> weak_ptr_factory_; | 177 base::WeakPtrFactory<SyncWorker> weak_ptr_factory_; |
| 177 DISALLOW_COPY_AND_ASSIGN(SyncWorker); | 178 DISALLOW_COPY_AND_ASSIGN(SyncWorker); |
| 178 }; | 179 }; |
| 179 | 180 |
| 180 } // namespace drive_backend | 181 } // namespace drive_backend |
| 181 } // namespace sync_file_system | 182 } // namespace sync_file_system |
| 182 | 183 |
| 183 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_WORKER_H_ | 184 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_WORKER_H_ |
| OLD | NEW |