| Index: chrome/browser/sync/failed_datatypes_handler.cc
|
| diff --git a/chrome/browser/sync/failed_datatypes_handler.cc b/chrome/browser/sync/failed_datatypes_handler.cc
|
| index c5dc60f12210c2a151b25c3075e0aac44f979746..d1feb347b0b2d6eda685bc146abeda80acf086b9 100644
|
| --- a/chrome/browser/sync/failed_datatypes_handler.cc
|
| +++ b/chrome/browser/sync/failed_datatypes_handler.cc
|
| @@ -44,15 +44,14 @@ void FailedDatatypesHandler::OnUserChoseDatatypes() {
|
| }
|
|
|
| std::string FailedDatatypesHandler::GetErrorString() const {
|
| - std::string message;
|
| + std::string message = "Sync configuration failed when starting ";
|
| for (std::list<SyncError>::const_iterator it = errors_.begin();
|
| it != errors_.end(); ++it) {
|
| if (it != errors_.begin()) {
|
| message += ", ";
|
| }
|
| - message += "Sync configuration failed when starting "
|
| - + std::string(syncable::ModelTypeToString(it->type()))
|
| - + ": " + it->message();
|
| + message += std::string(syncable::ModelTypeToString(it->type())) + " " +
|
| + it->location().ToString() + ": " + it->message();
|
| }
|
| return message;
|
| }
|
|
|