| Index: ipc/ipc_message_utils.h
|
| diff --git a/ipc/ipc_message_utils.h b/ipc/ipc_message_utils.h
|
| index 0e4c68e513efbbc9b6a0651e625a5978dc724739..a058dadabca92252693675d1a859352d4001b90e 100644
|
| --- a/ipc/ipc_message_utils.h
|
| +++ b/ipc/ipc_message_utils.h
|
| @@ -296,6 +296,14 @@ struct IPC_EXPORT ParamTraits<std::vector<unsigned char> > {
|
| };
|
|
|
| template <>
|
| +struct IPC_EXPORT ParamTraits<std::vector<signed char> > {
|
| + typedef std::vector<signed char> param_type;
|
| + static void Write(Message* m, const param_type& p);
|
| + static bool Read(const Message* m, PickleIterator* iter, param_type* r);
|
| + static void Log(const param_type& p, std::string* l);
|
| +};
|
| +
|
| +template <>
|
| struct IPC_EXPORT ParamTraits<std::vector<bool> > {
|
| typedef std::vector<bool> param_type;
|
| static void Write(Message* m, const param_type& p);
|
|
|