| 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 IPC_STRUCT_TRAITS_MEMBER(format) | 258 IPC_STRUCT_TRAITS_MEMBER(format) |
| 259 IPC_STRUCT_TRAITS_END() | 259 IPC_STRUCT_TRAITS_END() |
| 260 | 260 |
| 261 IPC_STRUCT_TRAITS_BEGIN(ppapi::ViewData) | 261 IPC_STRUCT_TRAITS_BEGIN(ppapi::ViewData) |
| 262 IPC_STRUCT_TRAITS_MEMBER(rect) | 262 IPC_STRUCT_TRAITS_MEMBER(rect) |
| 263 IPC_STRUCT_TRAITS_MEMBER(is_fullscreen) | 263 IPC_STRUCT_TRAITS_MEMBER(is_fullscreen) |
| 264 IPC_STRUCT_TRAITS_MEMBER(is_page_visible) | 264 IPC_STRUCT_TRAITS_MEMBER(is_page_visible) |
| 265 IPC_STRUCT_TRAITS_MEMBER(clip_rect) | 265 IPC_STRUCT_TRAITS_MEMBER(clip_rect) |
| 266 IPC_STRUCT_TRAITS_MEMBER(device_scale) | 266 IPC_STRUCT_TRAITS_MEMBER(device_scale) |
| 267 IPC_STRUCT_TRAITS_MEMBER(css_scale) | 267 IPC_STRUCT_TRAITS_MEMBER(css_scale) |
| 268 IPC_STRUCT_TRAITS_MEMBER(scroll_offset) |
| 268 IPC_STRUCT_TRAITS_END() | 269 IPC_STRUCT_TRAITS_END() |
| 269 | 270 |
| 270 IPC_STRUCT_TRAITS_BEGIN(PP_TouchPoint) | 271 IPC_STRUCT_TRAITS_BEGIN(PP_TouchPoint) |
| 271 IPC_STRUCT_TRAITS_MEMBER(id) | 272 IPC_STRUCT_TRAITS_MEMBER(id) |
| 272 IPC_STRUCT_TRAITS_MEMBER(position) | 273 IPC_STRUCT_TRAITS_MEMBER(position) |
| 273 IPC_STRUCT_TRAITS_MEMBER(radius) | 274 IPC_STRUCT_TRAITS_MEMBER(radius) |
| 274 IPC_STRUCT_TRAITS_MEMBER(rotation_angle) | 275 IPC_STRUCT_TRAITS_MEMBER(rotation_angle) |
| 275 IPC_STRUCT_TRAITS_MEMBER(pressure) | 276 IPC_STRUCT_TRAITS_MEMBER(pressure) |
| 276 IPC_STRUCT_TRAITS_END() | 277 IPC_STRUCT_TRAITS_END() |
| 277 | 278 |
| (...skipping 1908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2186 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2187 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
| 2187 PP_TalkPermission /* permission */) | 2188 PP_TalkPermission /* permission */) |
| 2188 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2189 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
| 2189 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2190 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
| 2190 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2191 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
| 2191 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2192 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
| 2192 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2193 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
| 2193 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2194 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
| 2194 | 2195 |
| 2195 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2196 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |