summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/engine/syncer_types.h
diff options
context:
space:
mode:
authortim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-14 01:31:36 +0000
committertim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-14 01:31:36 +0000
commit7f8abea4d5728b1b94fe38702a0021e2e4a82abb (patch)
tree19a2cb9608ffe226b63b75d0e9c74def324d1f8c /chrome/browser/sync/engine/syncer_types.h
parentfd013932faa095a8384dd183874fe7a2ee6986d5 (diff)
downloadchromium_src-7f8abea4d5728b1b94fe38702a0021e2e4a82abb.zip
chromium_src-7f8abea4d5728b1b94fe38702a0021e2e4a82abb.tar.gz
chromium_src-7f8abea4d5728b1b94fe38702a0021e2e4a82abb.tar.bz2
Handle birthday errors by disabling sync and deleting sync data. Also added some CV broadcasts in SyncerThread, as changing vault_ fields and not signalling seems dubious (and I caught a hang in the debugger where the thread was waiting for an already true condition, thus deadlocked).
BUG=46807,39070 Review URL: http://codereview.chromium.org/2923006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52259 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/engine/syncer_types.h')
-rw-r--r--chrome/browser/sync/engine/syncer_types.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/chrome/browser/sync/engine/syncer_types.h b/chrome/browser/sync/engine/syncer_types.h
index 5a3f68a..734f823 100644
--- a/chrome/browser/sync/engine/syncer_types.h
+++ b/chrome/browser/sync/engine/syncer_types.h
@@ -107,6 +107,15 @@ struct SyncerEvent {
// This event is sent when a connection has been established and
// the thread continues.
CONNECTED,
+
+ // This is sent after the Syncer (and SyncerThread) have initiated self
+ // halt due to no longer being permitted to communicate with the server.
+ // The listener should sever the sync / browser connections and delete sync
+ // data (i.e. as if the user clicked 'Stop Syncing' in the browser.
+ STOP_SYNCING_PERMANENTLY,
+
+ // Sent when the main syncer loop finishes.
+ SYNCER_THREAD_EXITING,
};
explicit SyncerEvent(EventCause cause) : what_happened(cause),