| Index: chrome/browser/sync/profile_sync_service_harness.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service_harness.cc b/chrome/browser/sync/profile_sync_service_harness.cc
|
| index 1f6042d8a0c0a36e726a73b6459d2258a542e438..0a6ea617cdedaa290637cd92be0744a5aace5b3e 100644
|
| --- a/chrome/browser/sync/profile_sync_service_harness.cc
|
| +++ b/chrome/browser/sync/profile_sync_service_harness.cc
|
| @@ -1125,6 +1125,8 @@ std::string ProfileSyncServiceHarness::GetServiceStatus() {
|
| DictionaryValue value;
|
| sync_ui_util::ConstructAboutInformation(service_, &value);
|
| std::string service_status;
|
| - base::JSONWriter::Write(&value, true, &service_status);
|
| + base::JSONWriter::WriteWithOptions(&value,
|
| + base::JSONWriter::OPTIONS_PRETTY_PRINT,
|
| + &service_status);
|
| return service_status;
|
| }
|
|
|