summaryrefslogtreecommitdiffstats
path: root/ipc/handle_win.h
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/handle_win.h')
-rw-r--r--ipc/handle_win.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/ipc/handle_win.h b/ipc/handle_win.h
index 38cddae..2fb5b54 100644
--- a/ipc/handle_win.h
+++ b/ipc/handle_win.h
@@ -13,6 +13,7 @@
#include "ipc/ipc_param_traits.h"
namespace base {
+class Pickle;
class PickleIterator;
} // namespace base
@@ -56,8 +57,10 @@ class IPC_EXPORT HandleWin {
template <>
struct IPC_EXPORT ParamTraits<HandleWin> {
typedef HandleWin param_type;
- static void Write(Message* m, const param_type& p);
- static bool Read(const Message* m, base::PickleIterator* iter, param_type* p);
+ static void Write(base::Pickle* m, const param_type& p);
+ static bool Read(const base::Pickle* m,
+ base::PickleIterator* iter,
+ param_type* p);
static void Log(const param_type& p, std::string* l);
};