| Index: ipc/ipc_message_utils.h
|
| diff --git a/ipc/ipc_message_utils.h b/ipc/ipc_message_utils.h
|
| index 7121c19e304fcea3dad3d765695f7b0a113e07d2..089f0d6458ddeef793dc39e01579ae768885f9ca 100644
|
| --- a/ipc/ipc_message_utils.h
|
| +++ b/ipc/ipc_message_utils.h
|
| @@ -216,7 +216,9 @@ struct ParamTraits<unsigned long long> {
|
| template <>
|
| struct IPC_EXPORT ParamTraits<float> {
|
| typedef float param_type;
|
| - static void Write(Message* m, const param_type& p);
|
| + static void Write(Message* m, const param_type& p) {
|
| + m->WriteFloat(p);
|
| + }
|
| static bool Read(const Message* m, PickleIterator* iter, param_type* r);
|
| static void Log(const param_type& p, std::string* l);
|
| };
|
|
|