| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 IPC_STRUCT_TRAITS_END() | 99 IPC_STRUCT_TRAITS_END() |
| 100 | 100 |
| 101 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData) | 101 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData) |
| 102 IPC_STRUCT_TRAITS_MEMBER(is_filtered) | 102 IPC_STRUCT_TRAITS_MEMBER(is_filtered) |
| 103 IPC_STRUCT_TRAITS_MEMBER(event_type) | 103 IPC_STRUCT_TRAITS_MEMBER(event_type) |
| 104 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) | 104 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) |
| 105 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) | 105 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) |
| 106 IPC_STRUCT_TRAITS_MEMBER(mouse_button) | 106 IPC_STRUCT_TRAITS_MEMBER(mouse_button) |
| 107 IPC_STRUCT_TRAITS_MEMBER(mouse_position) | 107 IPC_STRUCT_TRAITS_MEMBER(mouse_position) |
| 108 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) | 108 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) |
| 109 IPC_STRUCT_TRAITS_MEMBER(mouse_movement) |
| 109 IPC_STRUCT_TRAITS_MEMBER(wheel_delta) | 110 IPC_STRUCT_TRAITS_MEMBER(wheel_delta) |
| 110 IPC_STRUCT_TRAITS_MEMBER(wheel_ticks) | 111 IPC_STRUCT_TRAITS_MEMBER(wheel_ticks) |
| 111 IPC_STRUCT_TRAITS_MEMBER(wheel_scroll_by_page) | 112 IPC_STRUCT_TRAITS_MEMBER(wheel_scroll_by_page) |
| 112 IPC_STRUCT_TRAITS_MEMBER(key_code) | 113 IPC_STRUCT_TRAITS_MEMBER(key_code) |
| 113 IPC_STRUCT_TRAITS_MEMBER(character_text) | 114 IPC_STRUCT_TRAITS_MEMBER(character_text) |
| 114 IPC_STRUCT_TRAITS_END() | 115 IPC_STRUCT_TRAITS_END() |
| 115 | 116 |
| 116 IPC_STRUCT_TRAITS_BEGIN(ppapi::PPB_URLRequestInfo_Data) | 117 IPC_STRUCT_TRAITS_BEGIN(ppapi::PPB_URLRequestInfo_Data) |
| 117 IPC_STRUCT_TRAITS_MEMBER(url) | 118 IPC_STRUCT_TRAITS_MEMBER(url) |
| 118 IPC_STRUCT_TRAITS_MEMBER(method) | 119 IPC_STRUCT_TRAITS_MEMBER(method) |
| (...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1031 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1032 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
| 1032 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1033 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
| 1033 ppapi::HostResource /* video_decoder */, | 1034 ppapi::HostResource /* video_decoder */, |
| 1034 int32_t /* picture buffer id */) | 1035 int32_t /* picture buffer id */) |
| 1035 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1036 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
| 1036 ppapi::HostResource /* video_decoder */) | 1037 ppapi::HostResource /* video_decoder */) |
| 1037 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1038 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
| 1038 ppapi::HostResource /* video_decoder */) | 1039 ppapi::HostResource /* video_decoder */) |
| 1039 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1040 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
| 1040 ppapi::HostResource /* video_decoder */) | 1041 ppapi::HostResource /* video_decoder */) |
| OLD | NEW |