| Index: chrome/browser/sync/glue/sync_backend_host.cc
 | 
| ===================================================================
 | 
| --- chrome/browser/sync/glue/sync_backend_host.cc	(revision 52107)
 | 
| +++ chrome/browser/sync/glue/sync_backend_host.cc	(working copy)
 | 
| @@ -592,6 +592,15 @@
 | 
|        NewRunnableMethod(this, &Core::NotifyResumed));
 | 
|  }
 | 
|  
 | 
| +void SyncBackendHost::Core::OnStopSyncingPermanently() {
 | 
| +  host_->frontend_loop_->PostTask(FROM_HERE, NewRunnableMethod(this,
 | 
| +      &Core::HandleStopSyncingPermanentlyOnFrontendLoop));
 | 
| +}
 | 
| +
 | 
| +void SyncBackendHost::Core::HandleStopSyncingPermanentlyOnFrontendLoop() {
 | 
| +  host_->frontend_->OnStopSyncingPermanently();
 | 
| +}
 | 
| +
 | 
|  void SyncBackendHost::Core::HandleAuthErrorEventOnFrontendLoop(
 | 
|      const GoogleServiceAuthError& new_auth_error) {
 | 
|    if (!host_ || !host_->frontend_)
 | 
| 
 |