diff options
Diffstat (limited to 'chrome/browser/sync/glue/theme_change_processor.cc')
-rw-r--r-- | chrome/browser/sync/glue/theme_change_processor.cc | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/chrome/browser/sync/glue/theme_change_processor.cc b/chrome/browser/sync/glue/theme_change_processor.cc index ec61f65..c44dbb1 100644 --- a/chrome/browser/sync/glue/theme_change_processor.cc +++ b/chrome/browser/sync/glue/theme_change_processor.cc @@ -112,9 +112,9 @@ void ThemeChangeProcessor::Observe(NotificationType type, sync_api::WriteNode node(&trans); if (!node.InitByClientTagLookup(syncable::THEMES, kCurrentThemeClientTag)) { - LOG(ERROR) << "Could not create node with client tag: " - << kCurrentThemeClientTag; - error_handler()->OnUnrecoverableError(); + std::string err = "Could not create node with client tag: "; + error_handler()->OnUnrecoverableError(FROM_HERE, + err + kCurrentThemeClientTag); return; } @@ -144,8 +144,9 @@ void ThemeChangeProcessor::ApplyChangesFromSyncModel( // we can remove the extra logic below. See: // http://code.google.com/p/chromium/issues/detail?id=41696 . if (change_count < 1) { - LOG(ERROR) << "Unexpected change_count: " << change_count; - error_handler()->OnUnrecoverableError(); + std::string err("Unexpected change_count: "); + err += change_count; + error_handler()->OnUnrecoverableError(FROM_HERE, err); return; } if (change_count > 1) { @@ -155,7 +156,8 @@ void ThemeChangeProcessor::ApplyChangesFromSyncModel( const sync_api::SyncManager::ChangeRecord& change = changes[change_count - 1]; if (change.action != sync_api::SyncManager::ChangeRecord::ACTION_UPDATE) { - LOG(WARNING) << "strange theme change.action: " << change.action; + std::string err = "strange theme change.action " + change.action; + error_handler()->OnUnrecoverableError(FROM_HERE, err); } sync_pb::ThemeSpecifics theme_specifics; // If the action is a delete, simply use the default values for @@ -163,8 +165,8 @@ void ThemeChangeProcessor::ApplyChangesFromSyncModel( if (change.action != sync_api::SyncManager::ChangeRecord::ACTION_DELETE) { sync_api::ReadNode node(trans); if (!node.InitByIdLookup(change.id)) { - LOG(ERROR) << "Theme node lookup failed"; - error_handler()->OnUnrecoverableError(); + error_handler()->OnUnrecoverableError(FROM_HERE, + "Theme node lookup failed."); return; } DCHECK_EQ(node.GetModelType(), syncable::THEMES); |