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

Unified Diff: chrome/browser/sync_file_system/sync_file_system_service_factory.cc

Issue 291403004: [SyncFS] Add TaskLogger and wire up it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync_file_system/sync_file_system_service_factory.cc
diff --git a/chrome/browser/sync_file_system/sync_file_system_service_factory.cc b/chrome/browser/sync_file_system/sync_file_system_service_factory.cc
index 020ddd9ec141ec9befe86ff1f566833a42db9228..a79c91245cbf9ae85411f5b7be7a100e560dc9c3 100644
--- a/chrome/browser/sync_file_system/sync_file_system_service_factory.cc
+++ b/chrome/browser/sync_file_system/sync_file_system_service_factory.cc
@@ -65,10 +65,10 @@ KeyedService* SyncFileSystemServiceFactory::BuildServiceInstanceFor(
remote_file_service = mock_remote_file_service_.Pass();
} else if (IsV2Enabled()) {
remote_file_service = RemoteFileSyncService::CreateForBrowserContext(
- RemoteFileSyncService::V2, context);
+ RemoteFileSyncService::V2, context, service->task_logger());
} else {
remote_file_service = RemoteFileSyncService::CreateForBrowserContext(
- RemoteFileSyncService::V1, context);
+ RemoteFileSyncService::V1, context, service->task_logger());
}
service->Initialize(local_file_service.Pass(),
« no previous file with comments | « chrome/browser/sync_file_system/sync_file_system_service.cc ('k') | chrome/browser/sync_file_system/task_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698