summaryrefslogtreecommitdiffstats
path: root/ipc/struct_constructor_macros.h
diff options
context:
space:
mode:
authorjbates@chromium.org <jbates@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-16 19:13:02 +0000
committerjbates@chromium.org <jbates@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-16 19:13:02 +0000
commit01cca00452b5cdfe3a83b108da1bc78b720c6f9c (patch)
treed65d995fafa6d8ab6d6e1b1bc578898601488494 /ipc/struct_constructor_macros.h
parent6b354c1d8dd480c4078fc12f39b9c0d8e227a961 (diff)
downloadchromium_src-01cca00452b5cdfe3a83b108da1bc78b720c6f9c.zip
chromium_src-01cca00452b5cdfe3a83b108da1bc78b720c6f9c.tar.gz
chromium_src-01cca00452b5cdfe3a83b108da1bc78b720c6f9c.tar.bz2
Add support for default values of IPC_STRUCT_MEMBER.
Review URL: http://codereview.chromium.org/10067023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132435 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/struct_constructor_macros.h')
-rw-r--r--ipc/struct_constructor_macros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/struct_constructor_macros.h b/ipc/struct_constructor_macros.h
index ee056a3..226878b 100644
--- a/ipc/struct_constructor_macros.h
+++ b/ipc/struct_constructor_macros.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -16,7 +16,7 @@
#define IPC_STRUCT_BEGIN(struct_name) struct_name::struct_name() : NoParams()
#define IPC_STRUCT_BEGIN_WITH_PARENT(struct_name, parent) \
struct_name::struct_name() : parent()
-#define IPC_STRUCT_MEMBER(type, name) , name()
+#define IPC_STRUCT_MEMBER(type, name, ...) , name(__VA_ARGS__)
#define IPC_STRUCT_END() {}
#endif // IPC_STRUCT_CONSTRUCTOR_MACROS_H_