Index: sync/internal_api/sync_core.cc |
diff --git a/sync/internal_api/sync_core.cc b/sync/internal_api/sync_core.cc |
index dbeb76d0038ae76f49eb672497b8a8fa2b180f23..67071769f805414925a114b9af69a909be5d4f78 100644 |
--- a/sync/internal_api/sync_core.cc |
+++ b/sync/internal_api/sync_core.cc |
@@ -16,13 +16,14 @@ SyncCore::~SyncCore() {} |
void SyncCore::ConnectSyncTypeToCore( |
ModelType type, |
+ const DataTypeState& data_type_state, |
scoped_refptr<base::SequencedTaskRunner> task_runner, |
base::WeakPtr<NonBlockingTypeProcessor> processor) { |
- |
// Initialize the processor's sync-thread sibling and the |
// processor <-> processor_core (ie. model thread <-> sync thread) |
// communication channel. |
- model_type_registry_->InitializeNonBlockingType(type, task_runner, processor); |
+ model_type_registry_->InitializeNonBlockingType( |
+ type, data_type_state, task_runner, processor); |
} |
void SyncCore::Disconnect(ModelType type) { |