| 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 <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) | 123 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) |
| 124 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) | 124 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) |
| 125 IPC_STRUCT_TRAITS_MEMBER(mouse_button) | 125 IPC_STRUCT_TRAITS_MEMBER(mouse_button) |
| 126 IPC_STRUCT_TRAITS_MEMBER(mouse_position) | 126 IPC_STRUCT_TRAITS_MEMBER(mouse_position) |
| 127 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) | 127 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) |
| 128 IPC_STRUCT_TRAITS_MEMBER(mouse_movement) | 128 IPC_STRUCT_TRAITS_MEMBER(mouse_movement) |
| 129 IPC_STRUCT_TRAITS_MEMBER(wheel_delta) | 129 IPC_STRUCT_TRAITS_MEMBER(wheel_delta) |
| 130 IPC_STRUCT_TRAITS_MEMBER(wheel_ticks) | 130 IPC_STRUCT_TRAITS_MEMBER(wheel_ticks) |
| 131 IPC_STRUCT_TRAITS_MEMBER(wheel_scroll_by_page) | 131 IPC_STRUCT_TRAITS_MEMBER(wheel_scroll_by_page) |
| 132 IPC_STRUCT_TRAITS_MEMBER(key_code) | 132 IPC_STRUCT_TRAITS_MEMBER(key_code) |
| 133 IPC_STRUCT_TRAITS_MEMBER(usb_key_code) |
| 133 IPC_STRUCT_TRAITS_MEMBER(character_text) | 134 IPC_STRUCT_TRAITS_MEMBER(character_text) |
| 134 IPC_STRUCT_TRAITS_MEMBER(composition_segment_offsets) | 135 IPC_STRUCT_TRAITS_MEMBER(composition_segment_offsets) |
| 135 IPC_STRUCT_TRAITS_MEMBER(composition_target_segment) | 136 IPC_STRUCT_TRAITS_MEMBER(composition_target_segment) |
| 136 IPC_STRUCT_TRAITS_MEMBER(composition_selection_start) | 137 IPC_STRUCT_TRAITS_MEMBER(composition_selection_start) |
| 137 IPC_STRUCT_TRAITS_MEMBER(composition_selection_end) | 138 IPC_STRUCT_TRAITS_MEMBER(composition_selection_end) |
| 138 IPC_STRUCT_TRAITS_END() | 139 IPC_STRUCT_TRAITS_END() |
| 139 | 140 |
| 140 IPC_STRUCT_TRAITS_BEGIN(ppapi::PPB_URLRequestInfo_Data) | 141 IPC_STRUCT_TRAITS_BEGIN(ppapi::PPB_URLRequestInfo_Data) |
| 141 IPC_STRUCT_TRAITS_MEMBER(url) | 142 IPC_STRUCT_TRAITS_MEMBER(url) |
| 142 IPC_STRUCT_TRAITS_MEMBER(method) | 143 IPC_STRUCT_TRAITS_MEMBER(method) |
| (...skipping 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1170 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1171 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
| 1171 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1172 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
| 1172 ppapi::HostResource /* video_decoder */, | 1173 ppapi::HostResource /* video_decoder */, |
| 1173 int32_t /* picture buffer id */) | 1174 int32_t /* picture buffer id */) |
| 1174 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1175 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
| 1175 ppapi::HostResource /* video_decoder */) | 1176 ppapi::HostResource /* video_decoder */) |
| 1176 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1177 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
| 1177 ppapi::HostResource /* video_decoder */) | 1178 ppapi::HostResource /* video_decoder */) |
| 1178 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1179 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
| 1179 ppapi::HostResource /* video_decoder */) | 1180 ppapi::HostResource /* video_decoder */) |
| OLD | NEW |