| 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 1f500eec851174f63d5ab0894cc20cc67917e9db..ea2a399bd0804891a530e85bf3d75d5210f30dc0 100644
|
| --- a/chrome/browser/sync/glue/sync_backend_host_impl.cc
|
| +++ b/chrome/browser/sync/glue/sync_backend_host_impl.cc
|
| @@ -651,7 +651,8 @@ void SyncBackendHostImpl::HandleInitializationSuccessOnFrontendLoop(
|
| const syncer::WeakHandle<syncer::JsBackend> js_backend,
|
| const syncer::WeakHandle<syncer::DataTypeDebugInfoListener>
|
| debug_info_listener,
|
| - syncer::SyncContextProxy* sync_context_proxy) {
|
| + syncer::SyncContextProxy* sync_context_proxy,
|
| + const std::string& cache_guid) {
|
| DCHECK_EQ(base::MessageLoop::current(), frontend_loop_);
|
|
|
| if (sync_context_proxy)
|
| @@ -681,6 +682,7 @@ void SyncBackendHostImpl::HandleInitializationSuccessOnFrontendLoop(
|
| AddExperimentalTypes();
|
| frontend_->OnBackendInitialized(js_backend,
|
| debug_info_listener,
|
| + cache_guid,
|
| true);
|
| }
|
|
|
| @@ -692,6 +694,7 @@ void SyncBackendHostImpl::HandleInitializationFailureOnFrontendLoop() {
|
| frontend_->OnBackendInitialized(
|
| syncer::WeakHandle<syncer::JsBackend>(),
|
| syncer::WeakHandle<syncer::DataTypeDebugInfoListener>(),
|
| + "",
|
| false);
|
| }
|
|
|
|
|