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

Side by Side Diff: chrome/browser/sync_file_system/drive/local_change_processor_delegate.cc

Issue 15806012: Move webkit/fileapi/syncable/* code to webkit/browser/fileapi (final!) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/local_change_processor_delegate. h" 5 #include "chrome/browser/sync_file_system/drive/local_change_processor_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/drive/api_util.h" 9 #include "chrome/browser/sync_file_system/drive/api_util.h"
10 #include "chrome/browser/sync_file_system/drive_file_sync_service.h" 10 #include "chrome/browser/sync_file_system/drive_file_sync_service.h"
11 #include "chrome/browser/sync_file_system/drive_metadata_store.h" 11 #include "chrome/browser/sync_file_system/drive_metadata_store.h"
12 #include "webkit/fileapi/syncable/syncable_file_system_util.h" 12 #include "webkit/browser/fileapi/syncable/syncable_file_system_util.h"
13 13
14 namespace sync_file_system { 14 namespace sync_file_system {
15 namespace drive { 15 namespace drive {
16 16
17 LocalChangeProcessorDelegate::LocalChangeProcessorDelegate( 17 LocalChangeProcessorDelegate::LocalChangeProcessorDelegate(
18 base::WeakPtr<DriveFileSyncService> sync_service, 18 base::WeakPtr<DriveFileSyncService> sync_service,
19 const FileChange& local_change, 19 const FileChange& local_change,
20 const base::FilePath& local_path, 20 const base::FilePath& local_path,
21 const SyncFileMetadata& local_metadata, 21 const SyncFileMetadata& local_metadata,
22 const fileapi::FileSystemURL& url) 22 const fileapi::FileSystemURL& url)
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 APIUtilInterface* LocalChangeProcessorDelegate::api_util() { 610 APIUtilInterface* LocalChangeProcessorDelegate::api_util() {
611 return sync_service_->api_util_.get(); 611 return sync_service_->api_util_.get();
612 } 612 }
613 613
614 RemoteChangeHandler* LocalChangeProcessorDelegate::remote_change_handler() { 614 RemoteChangeHandler* LocalChangeProcessorDelegate::remote_change_handler() {
615 return &sync_service_->remote_change_handler_; 615 return &sync_service_->remote_change_handler_;
616 } 616 }
617 617
618 } // namespace drive 618 } // namespace drive
619 } // namespace sync_file_system 619 } // namespace sync_file_system
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698