| 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 IPC_STRUCT_TRAITS_MEMBER(file_system_plugin_resource) | 289 IPC_STRUCT_TRAITS_MEMBER(file_system_plugin_resource) |
| 290 IPC_STRUCT_TRAITS_END() | 290 IPC_STRUCT_TRAITS_END() |
| 291 | 291 |
| 292 IPC_STRUCT_TRAITS_BEGIN(ppapi::FlashSiteSetting) | 292 IPC_STRUCT_TRAITS_BEGIN(ppapi::FlashSiteSetting) |
| 293 IPC_STRUCT_TRAITS_MEMBER(site) | 293 IPC_STRUCT_TRAITS_MEMBER(site) |
| 294 IPC_STRUCT_TRAITS_MEMBER(permission) | 294 IPC_STRUCT_TRAITS_MEMBER(permission) |
| 295 IPC_STRUCT_TRAITS_END() | 295 IPC_STRUCT_TRAITS_END() |
| 296 | 296 |
| 297 IPC_STRUCT_TRAITS_BEGIN(ppapi::MediaStreamAudioTrackShared::Attributes) | 297 IPC_STRUCT_TRAITS_BEGIN(ppapi::MediaStreamAudioTrackShared::Attributes) |
| 298 IPC_STRUCT_TRAITS_MEMBER(buffers) | 298 IPC_STRUCT_TRAITS_MEMBER(buffers) |
| 299 IPC_STRUCT_TRAITS_MEMBER(duration) |
| 299 IPC_STRUCT_TRAITS_END() | 300 IPC_STRUCT_TRAITS_END() |
| 300 | 301 |
| 301 IPC_STRUCT_TRAITS_BEGIN(ppapi::MediaStreamVideoTrackShared::Attributes) | 302 IPC_STRUCT_TRAITS_BEGIN(ppapi::MediaStreamVideoTrackShared::Attributes) |
| 302 IPC_STRUCT_TRAITS_MEMBER(buffers) | 303 IPC_STRUCT_TRAITS_MEMBER(buffers) |
| 303 IPC_STRUCT_TRAITS_MEMBER(width) | 304 IPC_STRUCT_TRAITS_MEMBER(width) |
| 304 IPC_STRUCT_TRAITS_MEMBER(height) | 305 IPC_STRUCT_TRAITS_MEMBER(height) |
| 305 IPC_STRUCT_TRAITS_MEMBER(format) | 306 IPC_STRUCT_TRAITS_MEMBER(format) |
| 306 IPC_STRUCT_TRAITS_END() | 307 IPC_STRUCT_TRAITS_END() |
| 307 | 308 |
| 308 IPC_STRUCT_TRAITS_BEGIN(ppapi::ViewData) | 309 IPC_STRUCT_TRAITS_BEGIN(ppapi::ViewData) |
| (...skipping 1929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2238 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2239 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
| 2239 PP_TalkPermission /* permission */) | 2240 PP_TalkPermission /* permission */) |
| 2240 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2241 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
| 2241 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2242 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
| 2242 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2243 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
| 2243 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2244 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
| 2244 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2245 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
| 2245 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2246 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
| 2246 | 2247 |
| 2247 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2248 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |