| Index: chrome/browser/sync/test/integration/extension_settings_helper.cc
|
| diff --git a/chrome/browser/sync/test/integration/extension_settings_helper.cc b/chrome/browser/sync/test/integration/extension_settings_helper.cc
|
| index b1a0a8ba25ae5ca39f171400134df4eb6551b53a..d0671e5515475a37bcb81e31fee5287be9d9d9f5 100644
|
| --- a/chrome/browser/sync/test/integration/extension_settings_helper.cc
|
| +++ b/chrome/browser/sync/test/integration/extension_settings_helper.cc
|
| @@ -29,7 +29,9 @@ namespace {
|
|
|
| std::string ToJson(const Value& value) {
|
| std::string json;
|
| - base::JSONWriter::Write(&value, true /* pretty print */, &json);
|
| + base::JSONWriter::WriteWithOptions(&value,
|
| + base::JSONWriter::OPTIONS_PRETTY_PRINT,
|
| + &json);
|
| return json;
|
| }
|
|
|
|
|