| Index: chrome/browser/sync/backend_migrator.cc
|
| ===================================================================
|
| --- chrome/browser/sync/backend_migrator.cc (revision 94142)
|
| +++ chrome/browser/sync/backend_migrator.cc (working copy)
|
| @@ -121,8 +121,9 @@
|
| if (state_ == IDLE)
|
| return;
|
|
|
| - const DataTypeManager::ConfigureResult* result =
|
| - Details<DataTypeManager::ConfigureResult>(details).ptr();
|
| + DataTypeManager::ConfigureResultWithErrorLocation* result =
|
| + Details<DataTypeManager::ConfigureResultWithErrorLocation>(
|
| + details).ptr();
|
|
|
| ModelTypeSet intersection;
|
| std::set_intersection(result->requested_types.begin(),
|
| @@ -150,7 +151,7 @@
|
| return;
|
| }
|
|
|
| - if (result->status != DataTypeManager::OK) {
|
| + if (result->result != DataTypeManager::OK) {
|
| // If this fails, and we're disabling types, a type may or may not be
|
| // disabled until the user restarts the browser. If this wasn't an abort,
|
| // any failure will be reported as an unrecoverable error to the UI. If it
|
|
|