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

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

Issue 10911073: NOT FOR COMMIT: Add DeviceInfo type and ChangeProcessor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Introduce SyncedDeviceTracker (the ChangeProcessor) Created 8 years, 3 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: chrome/browser/sync/glue/change_processor.cc
diff --git a/chrome/browser/sync/glue/change_processor.cc b/chrome/browser/sync/glue/change_processor.cc
index 41fcf2b074cc50fe2f6fadb779d25b231077b4bf..4b30352ef758e6015dbdaab8e74c40756bcd28c9 100644
--- a/chrome/browser/sync/glue/change_processor.cc
+++ b/chrome/browser/sync/glue/change_processor.cc
@@ -18,7 +18,7 @@ ChangeProcessor::~ChangeProcessor() {
void ChangeProcessor::Start(Profile* profile,
syncer::UserShare* share_handle) {
- DCHECK(error_handler_ && !share_handle_);
+ DCHECK(!share_handle_);
rlarocque 2012/09/08 01:20:44 This is unfortunate. The only implementation of D
share_handle_ = share_handle;
StartImpl(profile);
running_ = true;

Powered by Google App Engine
This is Rietveld 408576698