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

Unified Diff: ipc/ipc_channel_proxy_unittest_messages.h

Issue 1659003003: IPC::Message -> base::Pickle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one more mac fix Created 4 years, 11 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 | « ipc/handle_win.cc ('k') | ipc/ipc_message.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_channel_proxy_unittest_messages.h
diff --git a/ipc/ipc_channel_proxy_unittest_messages.h b/ipc/ipc_channel_proxy_unittest_messages.h
index 20405eda0efda103731d0465f405b003b4a368ad..288ce5353d3b1477194a5e88e127426aa815f15e 100644
--- a/ipc/ipc_channel_proxy_unittest_messages.h
+++ b/ipc/ipc_channel_proxy_unittest_messages.h
@@ -17,8 +17,10 @@ namespace IPC {
template <>
struct ParamTraits<BadType> {
- static void Write(Message* m, const BadType& p) {}
- static bool Read(const Message* m, base::PickleIterator* iter, BadType* r) {
+ static void Write(base::Pickle* m, const BadType& p) {}
+ static bool Read(const base::Pickle* m,
+ base::PickleIterator* iter,
+ BadType* r) {
return false;
}
static void Log(const BadType& p, std::string* l) {}
« no previous file with comments | « ipc/handle_win.cc ('k') | ipc/ipc_message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698