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

Unified Diff: chrome/browser/sync/engine/syncer_proto_util.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/syncapi.cc ('k') | chrome/browser/sync/engine/syncer_thread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/engine/syncer_proto_util.cc
===================================================================
--- chrome/browser/sync/engine/syncer_proto_util.cc (revision 52107)
+++ chrome/browser/sync/engine/syncer_proto_util.cc (working copy)
@@ -83,6 +83,9 @@
std::string local_birthday = dir->store_birthday();
+ // TODO(tim): Bug 46807. Check for new response code denoting a clear store
+ // operation is in progress.
+
if (local_birthday.empty()) {
if (!response->has_store_birthday()) {
LOG(WARNING) << "Expected a birthday on first sync.";
@@ -189,6 +192,7 @@
// TODO(ncarter): Add a unit test for the case where the syncer becomes
// stuck due to a bad birthday.
session->status_controller()->set_syncer_stuck(true);
+ session->delegate()->OnShouldStopSyncingPermanently();
return false;
}
@@ -196,9 +200,6 @@
case ClientToServerResponse::SUCCESS:
LogResponseProfilingData(*response);
return true;
- case ClientToServerResponse::NOT_MY_BIRTHDAY:
- LOG(WARNING) << "Server thought we had wrong birthday.";
- return false;
case ClientToServerResponse::THROTTLED:
LOG(WARNING) << "Client silenced by server.";
session->delegate()->OnSilencedUntil(base::TimeTicks::Now() +
« no previous file with comments | « chrome/browser/sync/engine/syncapi.cc ('k') | chrome/browser/sync/engine/syncer_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698