| Index: chrome/browser/sync/glue/password_data_type_controller.cc
|
| ===================================================================
|
| --- chrome/browser/sync/glue/password_data_type_controller.cc (revision 48898)
|
| +++ chrome/browser/sync/glue/password_data_type_controller.cc (working copy)
|
| @@ -129,16 +129,20 @@
|
| StartDone(result, NOT_RUNNING);
|
| }
|
|
|
| -void PasswordDataTypeController::OnUnrecoverableError() {
|
| +void PasswordDataTypeController::OnUnrecoverableError(
|
| + const tracked_objects::Location& from_here, const std::string& message) {
|
| ChromeThread::PostTask(
|
| - ChromeThread::UI, FROM_HERE,
|
| - NewRunnableMethod(this,
|
| - &PasswordDataTypeController::OnUnrecoverableErrorImpl));
|
| + ChromeThread::UI, FROM_HERE,
|
| + NewRunnableMethod(this,
|
| + &PasswordDataTypeController::OnUnrecoverableErrorImpl,
|
| + from_here, message));
|
| }
|
|
|
| -void PasswordDataTypeController::OnUnrecoverableErrorImpl() {
|
| +void PasswordDataTypeController::OnUnrecoverableErrorImpl(
|
| + const tracked_objects::Location& from_here,
|
| + const std::string& message) {
|
| DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
|
| - sync_service_->OnUnrecoverableError();
|
| + sync_service_->OnUnrecoverableError(from_here, message);
|
| }
|
|
|
| } // namespace browser_sync
|
|
|