Chromium Code Reviews| Index: chrome/browser/sync/engine/model_changing_syncer_command.cc |
| diff --git a/chrome/browser/sync/engine/model_changing_syncer_command.cc b/chrome/browser/sync/engine/model_changing_syncer_command.cc |
| index 1c392cbd20877ecfc27fa47abddc076dd2627361..da59a5117b361c0537de28a4922fbaf3528c8f61 100644 |
| --- a/chrome/browser/sync/engine/model_changing_syncer_command.cc |
| +++ b/chrome/browser/sync/engine/model_changing_syncer_command.cc |
| @@ -9,14 +9,16 @@ |
| #include "base/bind_helpers.h" |
| #include "chrome/browser/sync/sessions/status_controller.h" |
| #include "chrome/browser/sync/sessions/sync_session.h" |
| -#include "chrome/browser/sync/util/unrecoverable_error_info.h" |
| namespace browser_sync { |
| -void ModelChangingSyncerCommand::ExecuteImpl(sessions::SyncSession* session) { |
| +SyncerError ModelChangingSyncerCommand::ExecuteImpl( |
| + sessions::SyncSession* session) { |
| work_session_ = session; |
| - if (!ModelNeutralExecuteImpl(work_session_)) { |
| - return; |
| + SyncerError result = ModelNeutralExecuteImpl(work_session_); |
| + |
| + if (result != NO_ERROR) { |
| + return result; |
| } |
| const std::set<ModelSafeGroup>& groups_to_change = |
| @@ -40,15 +42,19 @@ void ModelChangingSyncerCommand::ExecuteImpl(sessions::SyncSession* session) { |
| // unretained. |
| base::Unretained(this)); |
| - // TODO(lipalani): Check the return value for an unrecoverable error. |
| - ignore_result(worker->DoWorkAndWaitUntilDone(c)); |
| - |
| + SyncerError this_worker_result = worker->DoWorkAndWaitUntilDone(c); |
| + // TODO(rlarocque): Figure out a better way to deal with errors from |
| + // multiple models at once. |
|
lipalani1
2012/01/05 22:59:41
I think you should return from here on the first i
rlarocque
2012/01/06 00:24:31
I agree this is probably the right thing to do. I
|
| + if (this_worker_result != NO_ERROR) |
| + result = this_worker_result; |
| } |
| + |
| + return result; |
| } |
| -bool ModelChangingSyncerCommand::ModelNeutralExecuteImpl( |
| +SyncerError ModelChangingSyncerCommand::ModelNeutralExecuteImpl( |
| sessions::SyncSession* session) { |
| - return true; |
| + return NO_ERROR; |
| } |
| } // namespace browser_sync |