Index: chrome/browser/sync/glue/sync_backend_host_impl.cc |
diff --git a/chrome/browser/sync/glue/sync_backend_host_impl.cc b/chrome/browser/sync/glue/sync_backend_host_impl.cc |
index 6f4c7e37ddf33d03afb5f97c658ece1ab55ab2c4..cbded53f8b5b9e8899f2b4714816177faa211cb5 100644 |
--- a/chrome/browser/sync/glue/sync_backend_host_impl.cc |
+++ b/chrome/browser/sync/glue/sync_backend_host_impl.cc |
@@ -135,12 +135,6 @@ void SyncBackendHostImpl::Initialize( |
InternalComponentsFactory::FORCE_ENABLE_PRE_COMMIT_UPDATE_AVOIDANCE; |
} |
- SigninClient* signin_client = |
- ChromeSigninClientFactory::GetForProfile(profile_); |
- DCHECK(signin_client); |
- std::string signin_scoped_device_id = |
- signin_client->GetSigninScopedDeviceId(); |
- |
scoped_ptr<DoInitializeOptions> init_opts(new DoInitializeOptions( |
registrar_->sync_thread()->message_loop(), |
registrar_.get(), |
@@ -162,8 +156,7 @@ void SyncBackendHostImpl::Initialize( |
scoped_ptr<InternalComponentsFactory>( |
new syncer::InternalComponentsFactoryImpl(factory_switches)).Pass(), |
unrecoverable_error_handler.Pass(), |
- report_unrecoverable_error_function, |
- signin_scoped_device_id)); |
+ report_unrecoverable_error_function)); |
InitCore(init_opts.Pass()); |
} |
@@ -514,12 +507,6 @@ void SyncBackendHostImpl::GetModelSafeRoutingInfo( |
} |
} |
-SyncedDeviceTracker* SyncBackendHostImpl::GetSyncedDeviceTracker() const { |
- if (!initialized()) |
- return NULL; |
- return core_->synced_device_tracker(); |
-} |
- |
void SyncBackendHostImpl::RequestBufferedProtocolEventsAndEnableForwarding() { |
registrar_->sync_thread()->message_loop()->PostTask( |
FROM_HERE, |