| Index: ipc/handle_win.h
|
| diff --git a/ipc/handle_win.h b/ipc/handle_win.h
|
| index 38cddae10b1a7600e243bf8ba56db30ab630d7f7..2fb5b5415ac44e253a6c3adb63a82367f2de9a0f 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);
|
| };
|
|
|
|
|