Index: chrome/browser/sync/glue/non_frontend_data_type_controller.cc |
diff --git a/chrome/browser/sync/glue/non_frontend_data_type_controller.cc b/chrome/browser/sync/glue/non_frontend_data_type_controller.cc |
index ee9da809df5f1e050a5881abef1e10f3be075e85..7fda4235e7c687ba1cf2295f35336367a6d587fc 100644 |
--- a/chrome/browser/sync/glue/non_frontend_data_type_controller.cc |
+++ b/chrome/browser/sync/glue/non_frontend_data_type_controller.cc |
@@ -249,18 +249,6 @@ DataTypeController::State NonFrontendDataTypeController::state() const { |
return state_; |
} |
-void NonFrontendDataTypeController::OnUnrecoverableError( |
- const tracked_objects::Location& from_here, |
- const std::string& message) { |
- DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::UI)); |
- RecordUnrecoverableError(from_here, message); |
- BrowserThread::PostTask(BrowserThread::UI, from_here, |
- base::Bind(&NonFrontendDataTypeController::OnUnrecoverableErrorImpl, |
- this, |
- from_here, |
- message)); |
-} |
- |
void NonFrontendDataTypeController::OnSingleDatatypeUnrecoverableError( |
const tracked_objects::Location& from_here, |
const std::string& message) { |
@@ -359,13 +347,6 @@ void NonFrontendDataTypeController::StopModels() { |
// Do nothing by default. |
} |
-void NonFrontendDataTypeController::OnUnrecoverableErrorImpl( |
- const tracked_objects::Location& from_here, |
- const std::string& message) { |
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
- profile_sync_service_->OnUnrecoverableError(from_here, message); |
-} |
- |
void NonFrontendDataTypeController::DisableImpl( |
const tracked_objects::Location& from_here, |
const std::string& message) { |