| Index: components/sync_driver/glue/sync_backend_host_core.cc
|
| diff --git a/components/sync_driver/glue/sync_backend_host_core.cc b/components/sync_driver/glue/sync_backend_host_core.cc
|
| index c2d59d9c85d14e0789ffe07dcf36a717cfe4de9b..8e6c1f76883454bc6099f5c41e6eec6af0ed74eb 100644
|
| --- a/components/sync_driver/glue/sync_backend_host_core.cc
|
| +++ b/components/sync_driver/glue/sync_backend_host_core.cc
|
| @@ -785,6 +785,11 @@ void SyncBackendHostCore::DoClearServerData(
|
| sync_manager_->ClearServerData(callback);
|
| }
|
|
|
| +void SyncBackendHostCore::DoOnCookieJarChanged(bool account_mismatch) {
|
| + DCHECK_EQ(base::MessageLoop::current(), sync_loop_);
|
| + sync_manager_->OnCookieJarChanged(account_mismatch);
|
| +}
|
| +
|
| void SyncBackendHostCore::ClearServerDataDone(
|
| const base::Closure& frontend_callback) {
|
| DCHECK_EQ(base::MessageLoop::current(), sync_loop_);
|
|
|