summaryrefslogtreecommitdiffstats
path: root/ipc/param_traits_read_macros.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-05 19:08:32 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-05 19:08:32 +0000
commit94dc971dc40c6cfea33abd234e744ac314d0bc2a (patch)
tree0f2f3f0b57dfdb01c65afc6833e7ad622eb85697 /ipc/param_traits_read_macros.h
parenta14ea34921d1347ceca1c8ddaa6dc1cf6efb1ddb (diff)
downloadchromium_src-94dc971dc40c6cfea33abd234e744ac314d0bc2a.zip
chromium_src-94dc971dc40c6cfea33abd234e744ac314d0bc2a.tar.gz
chromium_src-94dc971dc40c6cfea33abd234e744ac314d0bc2a.tar.bz2
Move resource related IPCs to their own file in content. I added a IPC_STRUCT_TRAITS_PARENT macro to allow the automatic serializing macros to add a parent struct.
TBR=tsepez Review URL: http://codereview.chromium.org/6628035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77048 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/param_traits_read_macros.h')
-rw-r--r--ipc/param_traits_read_macros.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipc/param_traits_read_macros.h b/ipc/param_traits_read_macros.h
index a4fc2f9..ffcdf8e 100644
--- a/ipc/param_traits_read_macros.h
+++ b/ipc/param_traits_read_macros.h
@@ -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