Index: chrome/browser/sync/glue/preference_data_type_controller.cc |
=================================================================== |
--- chrome/browser/sync/glue/preference_data_type_controller.cc (revision 48898) |
+++ chrome/browser/sync/glue/preference_data_type_controller.cc (working copy) |
@@ -85,10 +85,12 @@ |
state_ = NOT_RUNNING; |
} |
-void PreferenceDataTypeController::OnUnrecoverableError() { |
+void PreferenceDataTypeController::OnUnrecoverableError( |
+ const tracked_objects::Location& from_here, |
+ const std::string& message) { |
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI)); |
UMA_HISTOGRAM_COUNTS("Sync.PreferenceRunFailures", 1); |
- sync_service_->OnUnrecoverableError(); |
+ sync_service_->OnUnrecoverableError(from_here, message); |
} |
void PreferenceDataTypeController::FinishStart(StartResult result) { |