Index: ipc/param_traits_read_macros.h |
=================================================================== |
--- ipc/param_traits_read_macros.h (revision 77019) |
+++ ipc/param_traits_read_macros.h (working copy) |
@@ -19,12 +19,14 @@ |
// Set up so next include will generate read methods. |
#undef IPC_STRUCT_TRAITS_BEGIN |
#undef IPC_STRUCT_TRAITS_MEMBER |
+#undef IPC_STRUCT_TRAITS_PARENT |
#undef IPC_STRUCT_TRAITS_END |
#define IPC_STRUCT_TRAITS_BEGIN(struct_name) \ |
bool ParamTraits<struct_name>:: \ |
Read(const Message* m, void** iter, param_type* p) { \ |
return |
#define IPC_STRUCT_TRAITS_MEMBER(name) ReadParam(m, iter, &p->name) && |
+#define IPC_STRUCT_TRAITS_PARENT(type) ParamTraits<type>::Read(m, iter, p) && |
#define IPC_STRUCT_TRAITS_END() 1; } |
#undef IPC_ENUM_TRAITS |