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