Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: chrome/browser/sync_file_system/drive_backend_v1/local_sync_delegate.cc

Issue 23787003: [SyncFS] Move SyncFS V1 files from drive_backend to drive_backend_v1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move back metadata_db_migration_util* Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/local_sync_delegate.h" 5 #include "chrome/browser/sync_file_system/drive_backend_v1/local_sync_delegate.h "
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "chrome/browser/sync_file_system/conflict_resolution_resolver.h" 9 #include "chrome/browser/sync_file_system/conflict_resolution_resolver.h"
10 #include "chrome/browser/sync_file_system/drive_backend/api_util.h" 10 #include "chrome/browser/sync_file_system/drive_backend_v1/api_util.h"
11 #include "chrome/browser/sync_file_system/drive_backend/drive_metadata_store.h" 11 #include "chrome/browser/sync_file_system/drive_backend_v1/drive_metadata_store. h"
12 #include "chrome/browser/sync_file_system/logger.h" 12 #include "chrome/browser/sync_file_system/logger.h"
13 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" 13 #include "chrome/browser/sync_file_system/syncable_file_system_util.h"
14 14
15 namespace sync_file_system { 15 namespace sync_file_system {
16 namespace drive_backend { 16 namespace drive_backend {
17 17
18 LocalSyncDelegate::LocalSyncDelegate( 18 LocalSyncDelegate::LocalSyncDelegate(
19 DriveFileSyncService* sync_service, 19 DriveFileSyncService* sync_service,
20 const FileChange& local_change, 20 const FileChange& local_change,
21 const base::FilePath& local_path, 21 const base::FilePath& local_path,
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 RemoteChangeHandler* LocalSyncDelegate::remote_change_handler() { 583 RemoteChangeHandler* LocalSyncDelegate::remote_change_handler() {
584 return &sync_service_->remote_change_handler_; 584 return &sync_service_->remote_change_handler_;
585 } 585 }
586 586
587 ConflictResolutionResolver* LocalSyncDelegate::conflict_resolution_resolver() { 587 ConflictResolutionResolver* LocalSyncDelegate::conflict_resolution_resolver() {
588 return &sync_service_->conflict_resolution_resolver_; 588 return &sync_service_->conflict_resolution_resolver_;
589 } 589 }
590 590
591 } // namespace drive_backend 591 } // namespace drive_backend
592 } // namespace sync_file_system 592 } // namespace sync_file_system
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698