OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef IPC_IPC_MESSAGE_UTILS_H_ | 5 #ifndef IPC_IPC_MESSAGE_UTILS_H_ |
6 #define IPC_IPC_MESSAGE_UTILS_H_ | 6 #define IPC_IPC_MESSAGE_UTILS_H_ |
7 | 7 |
8 #include <limits.h> | 8 #include <limits.h> |
9 #include <stddef.h> | 9 #include <stddef.h> |
10 #include <stdint.h> | 10 #include <stdint.h> |
11 | 11 |
12 #include <algorithm> | 12 #include <algorithm> |
13 #include <map> | 13 #include <map> |
14 #include <memory> | 14 #include <memory> |
15 #include <set> | 15 #include <set> |
16 #include <string> | 16 #include <string> |
17 #include <tuple> | 17 #include <tuple> |
18 #include <vector> | 18 #include <vector> |
19 | 19 |
20 #include "base/containers/small_map.h" | 20 #include "base/containers/small_map.h" |
21 #include "base/containers/stack_container.h" | 21 #include "base/containers/stack_container.h" |
22 #include "base/files/file.h" | 22 #include "base/files/file.h" |
23 #include "base/format_macros.h" | 23 #include "base/format_macros.h" |
24 #include "base/memory/scoped_vector.h" | 24 #include "base/memory/scoped_vector.h" |
25 #include "base/optional.h" | 25 #include "base/optional.h" |
26 #include "base/strings/string16.h" | 26 #include "base/strings/string16.h" |
27 #include "base/strings/string_util.h" | 27 #include "base/strings/string_util.h" |
28 #include "base/strings/stringprintf.h" | 28 #include "base/strings/stringprintf.h" |
29 #include "build/build_config.h" | 29 #include "build/build_config.h" |
30 #include "ipc/brokerable_attachment.h" | |
31 #include "ipc/ipc_message_start.h" | 30 #include "ipc/ipc_message_start.h" |
32 #include "ipc/ipc_param_traits.h" | 31 #include "ipc/ipc_param_traits.h" |
33 #include "ipc/ipc_sync_message.h" | 32 #include "ipc/ipc_sync_message.h" |
34 | 33 |
35 namespace base { | 34 namespace base { |
36 class DictionaryValue; | 35 class DictionaryValue; |
37 class FilePath; | 36 class FilePath; |
38 class ListValue; | 37 class ListValue; |
39 class NullableString16; | 38 class NullableString16; |
40 class Time; | 39 class Time; |
(...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1140 template <class ReplyParamType> | 1139 template <class ReplyParamType> |
1141 inline void LogReplyParamsToMessage(const ReplyParamType& reply_params, | 1140 inline void LogReplyParamsToMessage(const ReplyParamType& reply_params, |
1142 const Message* msg) {} | 1141 const Message* msg) {} |
1143 | 1142 |
1144 inline void ConnectMessageAndReply(const Message* msg, Message* reply) {} | 1143 inline void ConnectMessageAndReply(const Message* msg, Message* reply) {} |
1145 #endif | 1144 #endif |
1146 | 1145 |
1147 } // namespace IPC | 1146 } // namespace IPC |
1148 | 1147 |
1149 #endif // IPC_IPC_MESSAGE_UTILS_H_ | 1148 #endif // IPC_IPC_MESSAGE_UTILS_H_ |
OLD | NEW |