Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1265)

Unified Diff: sync/engine/model_safe_worker.cc

Issue 9590002: JSONWriter cleanup: integrate pretty print into write options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge conflict 7. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/json_host_config.cc ('k') | sync/engine/nigori_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/model_safe_worker.cc
diff --git a/sync/engine/model_safe_worker.cc b/sync/engine/model_safe_worker.cc
index ab1f750ddeb3be0e6b160d579c522c7251e777b4..a5aa04fde23334b01d668e065bf5c5427d42cf10 100644
--- a/sync/engine/model_safe_worker.cc
+++ b/sync/engine/model_safe_worker.cc
@@ -25,7 +25,7 @@ std::string ModelSafeRoutingInfoToString(
const ModelSafeRoutingInfo& routing_info) {
scoped_ptr<DictionaryValue> dict(ModelSafeRoutingInfoToValue(routing_info));
std::string json;
- base::JSONWriter::Write(dict.get(), false, &json);
+ base::JSONWriter::Write(dict.get(), &json);
return json;
}
« no previous file with comments | « remoting/host/json_host_config.cc ('k') | sync/engine/nigori_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698