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 PPAPI_PROXY_PPAPI_MESSAGE_UTILS_H_ | 5 #ifndef PPAPI_PROXY_PPAPI_MESSAGE_UTILS_H_ |
6 #define PPAPI_PROXY_PPAPI_MESSAGE_UTILS_H_ | 6 #define PPAPI_PROXY_PPAPI_MESSAGE_UTILS_H_ |
7 | 7 |
8 #include "base/basictypes.h" | |
9 #include "base/pickle.h" | 8 #include "base/pickle.h" |
10 #include "base/tuple.h" | 9 #include "base/tuple.h" |
11 #include "ipc/ipc_message.h" | 10 #include "ipc/ipc_message.h" |
12 #include "ipc/ipc_message_utils.h" | 11 #include "ipc/ipc_message_utils.h" |
13 | 12 |
14 namespace ppapi { | 13 namespace ppapi { |
15 | 14 |
16 namespace internal { | 15 namespace internal { |
17 | 16 |
18 // TupleTypeMatch* check whether a tuple type contains elements of the specified | 17 // TupleTypeMatch* check whether a tuple type contains elements of the specified |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 return IPC::ReadParam(&msg, &iter, a) && | 120 return IPC::ReadParam(&msg, &iter, a) && |
122 IPC::ReadParam(&msg, &iter, b) && | 121 IPC::ReadParam(&msg, &iter, b) && |
123 IPC::ReadParam(&msg, &iter, c) && | 122 IPC::ReadParam(&msg, &iter, c) && |
124 IPC::ReadParam(&msg, &iter, d) && | 123 IPC::ReadParam(&msg, &iter, d) && |
125 IPC::ReadParam(&msg, &iter, e); | 124 IPC::ReadParam(&msg, &iter, e); |
126 } | 125 } |
127 | 126 |
128 } // namespace ppapi | 127 } // namespace ppapi |
129 | 128 |
130 #endif // PPAPI_PROXY_PPAPI_MESSAGE_UTILS_H_ | 129 #endif // PPAPI_PROXY_PPAPI_MESSAGE_UTILS_H_ |
OLD | NEW |