Index: chrome/browser/sync/glue/password_change_processor.cc |
diff --git a/chrome/browser/sync/glue/password_change_processor.cc b/chrome/browser/sync/glue/password_change_processor.cc |
index 26ce523e3d3fab0c68bdc18d6fab6f52f18bd16e..58f40e9c3e5bb410002aede395e6f705e3a2fbbb 100644 |
--- a/chrome/browser/sync/glue/password_change_processor.cc |
+++ b/chrome/browser/sync/glue/password_change_processor.cc |
@@ -68,7 +68,7 @@ void PasswordChangeProcessor::Observe( |
sync_api::ReadNode password_root(&trans); |
if (password_root.InitByTagLookup(kPasswordTag) != |
sync_api::BaseNode::INIT_OK) { |
- error_handler()->OnUnrecoverableError(FROM_HERE, |
+ error_handler()->OnSingleDatatypeUnrecoverableError(FROM_HERE, |
"Server did not create the top-level password node. " |
"We might be running against an out-of-date server."); |
return; |
@@ -174,7 +174,7 @@ void PasswordChangeProcessor::ApplyChangesFromSyncModel( |
sync_api::ReadNode password_root(trans); |
if (password_root.InitByTagLookup(kPasswordTag) != |
sync_api::BaseNode::INIT_OK) { |
- error_handler()->OnUnrecoverableError(FROM_HERE, |
+ error_handler()->OnSingleDatatypeUnrecoverableError(FROM_HERE, |
"Password root node lookup failed."); |
return; |
} |