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 // Multiply-included message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
6 #include <map> | 6 #include <map> |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 IPC_STRUCT_TRAITS_MEMBER(alpha) | 257 IPC_STRUCT_TRAITS_MEMBER(alpha) |
258 IPC_STRUCT_TRAITS_END() | 258 IPC_STRUCT_TRAITS_END() |
259 | 259 |
260 IPC_STRUCT_TRAITS_BEGIN(ppapi::CompositorLayerData::ImageLayer) | 260 IPC_STRUCT_TRAITS_BEGIN(ppapi::CompositorLayerData::ImageLayer) |
261 IPC_STRUCT_TRAITS_MEMBER(resource) | 261 IPC_STRUCT_TRAITS_MEMBER(resource) |
262 IPC_STRUCT_TRAITS_MEMBER(source_rect) | 262 IPC_STRUCT_TRAITS_MEMBER(source_rect) |
263 IPC_STRUCT_TRAITS_END() | 263 IPC_STRUCT_TRAITS_END() |
264 | 264 |
265 IPC_STRUCT_TRAITS_BEGIN(ppapi::CompositorLayerData::TextureLayer) | 265 IPC_STRUCT_TRAITS_BEGIN(ppapi::CompositorLayerData::TextureLayer) |
266 IPC_STRUCT_TRAITS_MEMBER(mailbox) | 266 IPC_STRUCT_TRAITS_MEMBER(mailbox) |
| 267 IPC_STRUCT_TRAITS_MEMBER(target) |
267 IPC_STRUCT_TRAITS_MEMBER(sync_point) | 268 IPC_STRUCT_TRAITS_MEMBER(sync_point) |
268 IPC_STRUCT_TRAITS_MEMBER(source_rect) | 269 IPC_STRUCT_TRAITS_MEMBER(source_rect) |
269 IPC_STRUCT_TRAITS_MEMBER(premult_alpha) | 270 IPC_STRUCT_TRAITS_MEMBER(premult_alpha) |
270 IPC_STRUCT_TRAITS_END() | 271 IPC_STRUCT_TRAITS_END() |
271 | 272 |
272 IPC_STRUCT_TRAITS_BEGIN(ppapi::DeviceRefData) | 273 IPC_STRUCT_TRAITS_BEGIN(ppapi::DeviceRefData) |
273 IPC_STRUCT_TRAITS_MEMBER(type) | 274 IPC_STRUCT_TRAITS_MEMBER(type) |
274 IPC_STRUCT_TRAITS_MEMBER(name) | 275 IPC_STRUCT_TRAITS_MEMBER(name) |
275 IPC_STRUCT_TRAITS_MEMBER(id) | 276 IPC_STRUCT_TRAITS_MEMBER(id) |
276 IPC_STRUCT_TRAITS_END() | 277 IPC_STRUCT_TRAITS_END() |
(...skipping 1962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2239 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2240 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2240 PP_TalkPermission /* permission */) | 2241 PP_TalkPermission /* permission */) |
2241 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2242 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2242 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2243 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2243 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2244 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2244 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2245 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2245 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2246 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2246 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2247 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2247 | 2248 |
2248 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2249 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |