Index: trunk/src/chrome/browser/sync/glue/bookmark_model_associator.cc |
=================================================================== |
--- trunk/src/chrome/browser/sync/glue/bookmark_model_associator.cc (revision 289111) |
+++ trunk/src/chrome/browser/sync/glue/bookmark_model_associator.cc (working copy) |
@@ -730,12 +730,9 @@ |
int64 sync_id = *iter; |
syncer::WriteNode sync_node(&trans); |
if (sync_node.InitByIdLookup(sync_id) != syncer::BaseNode::INIT_OK) { |
- syncer::SyncError error( |
+ unrecoverable_error_handler_->OnSingleDatatypeUnrecoverableError( |
FROM_HERE, |
- syncer::SyncError::DATATYPE_ERROR, |
- "Could not lookup bookmark node for ID persistence.", |
- syncer::BOOKMARKS); |
- unrecoverable_error_handler_->OnSingleDataTypeUnrecoverableError(error); |
+ "Could not lookup bookmark node for ID persistence."); |
return; |
} |
const BookmarkNode* node = GetChromeNodeFromSyncId(sync_id); |