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 #include "chrome/browser/sync_file_system/drive_backend/remote_sync_delegate.h" | 5 #include "chrome/browser/sync_file_system/drive_backend_v1/remote_sync_delegate.
h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "chrome/browser/sync_file_system/drive_backend/remote_sync_operation_re
solver.h" | 8 #include "chrome/browser/sync_file_system/drive_backend_v1/remote_sync_operation
_resolver.h" |
9 #include "chrome/browser/sync_file_system/logger.h" | 9 #include "chrome/browser/sync_file_system/logger.h" |
10 #include "chrome/browser/sync_file_system/remote_change_processor.h" | 10 #include "chrome/browser/sync_file_system/remote_change_processor.h" |
11 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" | 11 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" |
12 #include "content/public/browser/browser_thread.h" | 12 #include "content/public/browser/browser_thread.h" |
13 | 13 |
14 using fileapi::FileSystemURL; | 14 using fileapi::FileSystemURL; |
15 | 15 |
16 namespace { | 16 namespace { |
17 | 17 |
18 void EmptyStatusCallback(sync_file_system::SyncStatusCode status) {} | 18 void EmptyStatusCallback(sync_file_system::SyncStatusCode status) {} |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 RemoteChangeProcessor* RemoteSyncDelegate::remote_change_processor() { | 477 RemoteChangeProcessor* RemoteSyncDelegate::remote_change_processor() { |
478 return sync_service_->remote_change_processor_; | 478 return sync_service_->remote_change_processor_; |
479 } | 479 } |
480 | 480 |
481 ConflictResolutionResolver* RemoteSyncDelegate::conflict_resolution_resolver() { | 481 ConflictResolutionResolver* RemoteSyncDelegate::conflict_resolution_resolver() { |
482 return &sync_service_->conflict_resolution_resolver_; | 482 return &sync_service_->conflict_resolution_resolver_; |
483 } | 483 } |
484 | 484 |
485 } // namespace drive_backend | 485 } // namespace drive_backend |
486 } // namespace sync_file_system | 486 } // namespace sync_file_system |
OLD | NEW |