| Index: chrome/browser/sync/profile_sync_service.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service.cc b/chrome/browser/sync/profile_sync_service.cc
|
| index fad95dc46e6f741329a82cd834a80622b9a1df9a..c7d334be9f46cc25b8b38dec369717d43b7e9328 100644
|
| --- a/chrome/browser/sync/profile_sync_service.cc
|
| +++ b/chrome/browser/sync/profile_sync_service.cc
|
| @@ -327,14 +327,6 @@ void ProfileSyncService::InitializeBackend(bool delete_stale_data) {
|
| return;
|
| }
|
|
|
| - syncer::ModelTypeSet initial_types;
|
| - // If sync setup hasn't finished, we don't want to initialize routing info
|
| - // for any data types so that we don't download updates for types that the
|
| - // user chooses not to sync on the first DownloadUpdatesCommand.
|
| - if (HasSyncSetupCompleted()) {
|
| - initial_types = GetPreferredDataTypes();
|
| - }
|
| -
|
| SyncCredentials credentials = GetCredentials();
|
|
|
| scoped_refptr<net::URLRequestContextGetter> request_context_getter(
|
| @@ -351,7 +343,6 @@ void ProfileSyncService::InitializeBackend(bool delete_stale_data) {
|
| this,
|
| MakeWeakHandle(sync_js_controller_.AsWeakPtr()),
|
| sync_service_url_,
|
| - initial_types,
|
| credentials,
|
| delete_stale_data,
|
| &sync_manager_factory_,
|
|
|