| 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_DRIVE_FILE_SYNC_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_FILE_SYNC_SERVICE_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_FILE_SYNC_SERVICE_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_FILE_SYNC_SERVICE_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "base/observer_list.h" | 17 #include "base/observer_list.h" |
| 18 #include "base/threading/non_thread_safe.h" | 18 #include "base/threading/non_thread_safe.h" |
| 19 #include "chrome/browser/google_apis/drive_notification_observer.h" | 19 #include "chrome/browser/google_apis/drive_notification_observer.h" |
| 20 #include "chrome/browser/sync_file_system/drive_file_sync_client_interface.h" | 20 #include "chrome/browser/sync_file_system/drive_file_sync_client_interface.h" |
| 21 #include "chrome/browser/sync_file_system/drive_metadata_store.h" | 21 #include "chrome/browser/sync_file_system/drive_metadata_store.h" |
| 22 #include "chrome/browser/sync_file_system/local_change_processor.h" | 22 #include "chrome/browser/sync_file_system/local_change_processor.h" |
| 23 #include "chrome/browser/sync_file_system/local_sync_operation_resolver.h" | 23 #include "chrome/browser/sync_file_system/local_sync_operation_resolver.h" |
| 24 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" | 24 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" |
| 25 #include "webkit/fileapi/syncable/file_change.h" | 25 #include "webkit/browser/fileapi/syncable/file_change.h" |
| 26 #include "webkit/fileapi/syncable/sync_action.h" | 26 #include "webkit/browser/fileapi/syncable/sync_action.h" |
| 27 #include "webkit/fileapi/syncable/sync_callbacks.h" | 27 #include "webkit/browser/fileapi/syncable/sync_callbacks.h" |
| 28 #include "webkit/fileapi/syncable/sync_direction.h" | 28 #include "webkit/browser/fileapi/syncable/sync_direction.h" |
| 29 #include "webkit/fileapi/syncable/sync_status_code.h" | 29 #include "webkit/browser/fileapi/syncable/sync_status_code.h" |
| 30 | 30 |
| 31 class ExtensionService; | 31 class ExtensionService; |
| 32 | 32 |
| 33 namespace google_apis { | 33 namespace google_apis { |
| 34 class ResourceList; | 34 class ResourceList; |
| 35 } | 35 } |
| 36 | 36 |
| 37 namespace tracked_objects { | 37 namespace tracked_objects { |
| 38 class Location; | 38 class Location; |
| 39 } | 39 } |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 RemoteChangeProcessor* remote_change_processor_; | 506 RemoteChangeProcessor* remote_change_processor_; |
| 507 | 507 |
| 508 ConflictResolutionPolicy conflict_resolution_; | 508 ConflictResolutionPolicy conflict_resolution_; |
| 509 | 509 |
| 510 DISALLOW_COPY_AND_ASSIGN(DriveFileSyncService); | 510 DISALLOW_COPY_AND_ASSIGN(DriveFileSyncService); |
| 511 }; | 511 }; |
| 512 | 512 |
| 513 } // namespace sync_file_system | 513 } // namespace sync_file_system |
| 514 | 514 |
| 515 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_FILE_SYNC_SERVICE_H_ | 515 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_FILE_SYNC_SERVICE_H_ |
| OLD | NEW |