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

Unified Diff: components/sync_driver/glue/sync_backend_host_core.cc

Issue 1991973002: [Sync] Add histograms for cookie jar state on Sessions commit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format Created 4 years, 7 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
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 8f695b34a538483c2b179de0dd2e0a0aa2a889fb..0ab8425b66b241fdf0a30b83481525693b71969f 100644
--- a/components/sync_driver/glue/sync_backend_host_core.cc
+++ b/components/sync_driver/glue/sync_backend_host_core.cc
@@ -783,9 +783,10 @@ void SyncBackendHostCore::DoClearServerData(
sync_manager_->ClearServerData(callback);
}
-void SyncBackendHostCore::DoOnCookieJarChanged(bool account_mismatch) {
+void SyncBackendHostCore::DoOnCookieJarChanged(bool account_mismatch,
+ bool empty_jar) {
DCHECK_EQ(base::MessageLoop::current(), sync_loop_);
- sync_manager_->OnCookieJarChanged(account_mismatch);
+ sync_manager_->OnCookieJarChanged(account_mismatch, empty_jar);
}
void SyncBackendHostCore::ClearServerDataDone(
« no previous file with comments | « components/sync_driver/glue/sync_backend_host_core.h ('k') | components/sync_driver/glue/sync_backend_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698