| Index: ipc/param_traits_macros.h
|
| diff --git a/ipc/param_traits_macros.h b/ipc/param_traits_macros.h
|
| index f4248df1116867b836f74a037f888ee1596a2efa..317f31228d993f2d26aa0e8eeb5d9ab21c9aa620 100644
|
| --- a/ipc/param_traits_macros.h
|
| +++ b/ipc/param_traits_macros.h
|
| @@ -14,7 +14,8 @@
|
| struct IPC_MESSAGE_EXPORT ParamTraits<struct_name> { \
|
| typedef struct_name param_type; \
|
| static void Write(Message* m, const param_type& p); \
|
| - static bool Read(const Message* m, PickleIterator* iter, param_type* p); \
|
| + static bool Read(const Message* m, base::PickleIterator* iter, \
|
| + param_type* p); \
|
| static void Log(const param_type& p, std::string* l); \
|
| }; \
|
| }
|
| @@ -52,7 +53,8 @@
|
| struct IPC_MESSAGE_EXPORT ParamTraits<enum_name> { \
|
| typedef enum_name param_type; \
|
| static void Write(Message* m, const param_type& p); \
|
| - static bool Read(const Message* m, PickleIterator* iter, param_type* p); \
|
| + static bool Read(const Message* m, base::PickleIterator* iter, \
|
| + param_type* p); \
|
| static void Log(const param_type& p, std::string* l); \
|
| }; \
|
| }
|
|
|