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

Unified Diff: content/browser/webui/web_ui_impl.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
Index: content/browser/webui/web_ui_impl.cc
diff --git a/content/browser/webui/web_ui_impl.cc b/content/browser/webui/web_ui_impl.cc
index 4c83d0ed8fedf21e50569c714d88b01941b1cdfa..0e839bf11f06b7025fa3587eba242d41d63ea3d7 100644
--- a/content/browser/webui/web_ui_impl.cc
+++ b/content/browser/webui/web_ui_impl.cc
@@ -39,7 +39,7 @@ string16 WebUI::GetJavascriptCall(
if (i > 0)
parameters += char16(',');
- base::JSONWriter::Write(arg_list[i], false, &json);
+ base::JSONWriter::Write(arg_list[i], &json);
parameters += UTF8ToUTF16(json);
}
return ASCIIToUTF16(function_name) +
« no previous file with comments | « content/browser/debugger/devtools_http_handler_impl.cc ('k') | gpu/tools/compositor_model_bench/render_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698