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

Unified Diff: chrome/browser/sync/engine/syncer_thread.cc

Issue 2923006: Handle birthday errors by disabling sync and deleting sync data. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
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 | « chrome/browser/sync/engine/syncer_thread.h ('k') | chrome/browser/sync/engine/syncer_thread_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/engine/syncer_thread.cc
===================================================================
--- chrome/browser/sync/engine/syncer_thread.cc (revision 52107)
+++ chrome/browser/sync/engine/syncer_thread.cc (working copy)
@@ -128,6 +128,14 @@
// Stop processing. A max wait of at least 2*server RTT time is recommended.
// Returns true if we stopped, false otherwise.
bool SyncerThread::Stop(int max_wait) {
+ RequestSyncerExitAndSetThreadStopConditions();
+
+ // This will join, and finish when ThreadMain terminates.
+ thread_.Stop();
+ return true;
+}
+
+void SyncerThread::RequestSyncerExitAndSetThreadStopConditions() {
{
AutoLock lock(lock_);
// If the thread has been started, then we either already have or are about
@@ -135,7 +143,7 @@
// it to finish. If the thread has not been started --and we now own the
// lock-- then we can early out because the caller has not called Start().
if (!thread_.IsRunning())
- return true;
+ return;
LOG(INFO) << "SyncerThread::Stop - setting ThreadMain exit condition to "
<< "true (vault_.stop_syncer_thread_)";
@@ -155,10 +163,6 @@
// end of ThreadMain.
vault_field_changed_.Broadcast();
}
-
- // This will join, and finish when ThreadMain terminates.
- thread_.Stop();
- return true;
}
bool SyncerThread::RequestPause() {
@@ -233,6 +237,13 @@
return ret;
}
+void SyncerThread::OnShouldStopSyncingPermanently() {
+ RequestSyncerExitAndSetThreadStopConditions();
+
+ SyncerEvent event(SyncerEvent::STOP_SYNCING_PERMANENTLY);
+ relay_channel()->Notify(event);
+}
+
void SyncerThread::ThreadMainLoop() {
// This is called with lock_ acquired.
lock_.AssertAcquired();
@@ -386,14 +397,18 @@
}
void SyncerThread::EnterPausedState() {
+ lock_.AssertAcquired();
vault_.pause_requested_ = false;
vault_.paused_ = true;
+ vault_field_changed_.Broadcast();
SyncerEvent event(SyncerEvent::PAUSED);
relay_channel()->Notify(event);
}
void SyncerThread::ExitPausedState() {
+ lock_.AssertAcquired();
vault_.paused_ = false;
+ vault_field_changed_.Broadcast();
SyncerEvent event(SyncerEvent::RESUMED);
relay_channel()->Notify(event);
}
@@ -488,6 +503,8 @@
thread_main_started_.Signal();
ThreadMainLoop();
LOG(INFO) << "Syncer thread ThreadMain is done.";
+ SyncerEvent event(SyncerEvent::SYNCER_THREAD_EXITING);
+ relay_channel()->Notify(event);
}
void SyncerThread::SyncMain(Syncer* syncer) {
« no previous file with comments | « chrome/browser/sync/engine/syncer_thread.h ('k') | chrome/browser/sync/engine/syncer_thread_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698