Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Unified Diff: chrome/browser/sync/glue/sync_backend_host.cc

Issue 2950009: Check for NULL host_ or frontend_ in the sync_backend_host. (Closed)
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/glue/sync_backend_host.cc
diff --git a/chrome/browser/sync/glue/sync_backend_host.cc b/chrome/browser/sync/glue/sync_backend_host.cc
index d6796292c230fb6af66bd130c79837bbc1c37423..435ff436b8d74babe5118f01c5897da6c41f1809 100644
--- a/chrome/browser/sync/glue/sync_backend_host.cc
+++ b/chrome/browser/sync/glue/sync_backend_host.cc
@@ -538,10 +538,14 @@ void SyncBackendHost::Core::OnInitializationComplete() {
}
void SyncBackendHost::Core::HandleInitalizationCompletedOnFrontendLoop() {
+ if (!host_)
+ return;
host_->HandleInitializationCompletedOnFrontendLoop();
}
void SyncBackendHost::HandleInitializationCompletedOnFrontendLoop() {
+ if (!frontend_)
+ return;
frontend_->OnBackendInitialized();
}
@@ -598,6 +602,8 @@ void SyncBackendHost::Core::OnStopSyncingPermanently() {
}
void SyncBackendHost::Core::HandleStopSyncingPermanentlyOnFrontendLoop() {
+ if (!host_ || !host_->frontend_)
+ return;
host_->frontend_->OnStopSyncingPermanently();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698