1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_COMMON_SAFE_BROWSING_PROTOBUF_MESSAGE_READ_MACROS_H_
6 #define CHROME_COMMON_SAFE_BROWSING_PROTOBUF_MESSAGE_READ_MACROS_H_
8 // Null out all the macros that need nulling.
9 #include "chrome/common/safe_browsing/ipc_protobuf_message_null_macros.h"
11 // Set up so next include will generate read methods.
12 #undef IPC_PROTOBUF_MESSAGE_TRAITS_BEGIN
13 #undef IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_FUNDAMENTAL_MEMBER
14 #undef IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_COMPLEX_MEMBER
15 #undef IPC_PROTOBUF_MESSAGE_TRAITS_REPEATED_COMPLEX_MEMBER
16 #undef IPC_PROTOBUF_MESSAGE_TRAITS_END
18 #define IPC_PROTOBUF_MESSAGE_TRAITS_BEGIN(message_name) \
20 bool ParamTraits<message_name>::ReadParamF( \
21 const Message* m, PickleIterator* iter, param_type* p, \
22 void (param_type::*setter_function)(P)) { \
24 if (!ReadParam(m, iter, &value)) \
26 (p->*setter_function)(value); \
29 bool ParamTraits<message_name>::Read(const Message* m, PickleIterator* iter, \
31 #define IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_FUNDAMENTAL_MEMBER(name) \
34 if (!iter->ReadBool(&is_present)) \
38 else if (!ReadParamF(m, iter, p, ¶m_type::set_##name)) \
41 #define IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_COMPLEX_MEMBER(name) \
44 if (!iter->ReadBool(&is_present)) \
48 else if (!ReadParam(m, iter, p->mutable_##name())) \
51 #define IPC_PROTOBUF_MESSAGE_TRAITS_REPEATED_COMPLEX_MEMBER(name) \
52 if (!ReadParam(m, iter, p->mutable_##name())) \
54 #define IPC_PROTOBUF_MESSAGE_TRAITS_END() \
58 #endif // CHROME_COMMON_SAFE_BROWSING_PROTOBUF_MESSAGE_READ_MACROS_H_