Index: chrome/browser/sync/profile_sync_service_startup_unittest.cc |
diff --git a/chrome/browser/sync/profile_sync_service_startup_unittest.cc b/chrome/browser/sync/profile_sync_service_startup_unittest.cc |
index 76e3e63a76805e00153ef1a25d45f8083ce80afe..13ec72c5c9128476402c4e8a6f003109690f82bc 100644 |
--- a/chrome/browser/sync/profile_sync_service_startup_unittest.cc |
+++ b/chrome/browser/sync/profile_sync_service_startup_unittest.cc |
@@ -17,6 +17,7 @@ |
#include "chrome/browser/sync/profile_sync_service_factory.h" |
#include "chrome/browser/sync/profile_sync_test_util.h" |
#include "chrome/browser/sync/supervised_user_signin_manager_wrapper.h" |
+#include "chrome/common/channel_info.h" |
#include "chrome/common/pref_names.h" |
#include "chrome/test/base/testing_browser_process.h" |
#include "chrome/test/base/testing_profile.h" |
@@ -89,7 +90,16 @@ class TestProfileSyncServiceNoBackup : public ProfileSyncService { |
signin_wrapper.Pass(), |
oauth2_token_service, |
start_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()) {} |
protected: |
bool NeedBackup() const override { return false; } |