Index: chrome/browser/sync/test_profile_sync_service.cc |
diff --git a/chrome/browser/sync/test_profile_sync_service.cc b/chrome/browser/sync/test_profile_sync_service.cc |
index 85a7c501810122f9809f38ca5790e628dc582216..3a1297f26e6ce018c81f701eaa1353e287e8832e 100644 |
--- a/chrome/browser/sync/test_profile_sync_service.cc |
+++ b/chrome/browser/sync/test_profile_sync_service.cc |
@@ -19,6 +19,7 @@ |
#include "chrome/browser/sync/profile_sync_service_factory.h" |
#include "chrome/browser/sync/profile_sync_test_util.h" |
#include "chrome/browser/sync/test/test_http_bridge_factory.h" |
+#include "chrome/common/channel_info.h" |
#include "components/invalidation/impl/profile_invalidation_provider.h" |
#include "components/signin/core/browser/signin_manager.h" |
#include "components/sync_driver/signin_manager_wrapper.h" |
@@ -133,7 +134,16 @@ TestProfileSyncService::TestProfileSyncService( |
make_scoped_ptr(new SigninManagerWrapper(signin)), |
oauth2_token_service, |
behavior, |
- base::Bind(&EmptyNetworkTimeUpdate)) { |
+ base::Bind(&EmptyNetworkTimeUpdate), |
+ profile->GetPath(), |
+ profile->GetRequestContext(), |
+ profile->GetDebugName(), |
+ chrome::GetChannel(), |
+ content::BrowserThread::GetMessageLoopProxyForThread( |
+ content::BrowserThread::DB), |
+ content::BrowserThread::GetMessageLoopProxyForThread( |
+ content::BrowserThread::FILE), |
+ content::BrowserThread::GetBlockingPool()) { |
SetSyncSetupCompleted(); |
} |