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

Unified Diff: ipc/ipc_message_utils.cc

Issue 316016: Move the json-related files into a separate json directory. This hopefully al... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 | « chrome/test/ui_test_utils.cc ('k') | net/base/net_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_message_utils.cc
===================================================================
--- ipc/ipc_message_utils.cc (revision 29830)
+++ ipc/ipc_message_utils.cc (working copy)
@@ -4,7 +4,7 @@
#include "ipc/ipc_message_utils.h"
-#include "base/json_writer.h"
+#include "base/json/json_writer.h"
#include "base/scoped_ptr.h"
#include "base/time.h"
#include "base/values.h"
@@ -216,7 +216,7 @@
void ParamTraits<DictionaryValue>::Log(const param_type& p, std::wstring* l) {
std::string json;
- JSONWriter::Write(&p, false, &json);
+ base::JSONWriter::Write(&p, false, &json);
l->append(UTF8ToWide(json));
}
@@ -235,7 +235,7 @@
void ParamTraits<ListValue>::Log(const param_type& p, std::wstring* l) {
std::string json;
- JSONWriter::Write(&p, false, &json);
+ base::JSONWriter::Write(&p, false, &json);
l->append(UTF8ToWide(json));
}
} // namespace IPC
Property changes on: ipc/ipc_message_utils.cc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/test/ui_test_utils.cc ('k') | net/base/net_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698