| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 IPC_STRUCT_TRAITS_END() | 94 IPC_STRUCT_TRAITS_END() |
| 95 | 95 |
| 96 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData) | 96 IPC_STRUCT_TRAITS_BEGIN(ppapi::InputEventData) |
| 97 IPC_STRUCT_TRAITS_MEMBER(is_filtered) | 97 IPC_STRUCT_TRAITS_MEMBER(is_filtered) |
| 98 IPC_STRUCT_TRAITS_MEMBER(event_type) | 98 IPC_STRUCT_TRAITS_MEMBER(event_type) |
| 99 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) | 99 IPC_STRUCT_TRAITS_MEMBER(event_time_stamp) |
| 100 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) | 100 IPC_STRUCT_TRAITS_MEMBER(event_modifiers) |
| 101 IPC_STRUCT_TRAITS_MEMBER(mouse_button) | 101 IPC_STRUCT_TRAITS_MEMBER(mouse_button) |
| 102 IPC_STRUCT_TRAITS_MEMBER(mouse_position) | 102 IPC_STRUCT_TRAITS_MEMBER(mouse_position) |
| 103 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) | 103 IPC_STRUCT_TRAITS_MEMBER(mouse_click_count) |
| 104 IPC_STRUCT_TRAITS_MEMBER(mouse_movement) |
| 104 IPC_STRUCT_TRAITS_MEMBER(wheel_delta) | 105 IPC_STRUCT_TRAITS_MEMBER(wheel_delta) |
| 105 IPC_STRUCT_TRAITS_MEMBER(wheel_ticks) | 106 IPC_STRUCT_TRAITS_MEMBER(wheel_ticks) |
| 106 IPC_STRUCT_TRAITS_MEMBER(wheel_scroll_by_page) | 107 IPC_STRUCT_TRAITS_MEMBER(wheel_scroll_by_page) |
| 107 IPC_STRUCT_TRAITS_MEMBER(key_code) | 108 IPC_STRUCT_TRAITS_MEMBER(key_code) |
| 108 IPC_STRUCT_TRAITS_MEMBER(character_text) | 109 IPC_STRUCT_TRAITS_MEMBER(character_text) |
| 109 IPC_STRUCT_TRAITS_END() | 110 IPC_STRUCT_TRAITS_END() |
| 110 | 111 |
| 111 // These are from the browser to the plugin. | 112 // These are from the browser to the plugin. |
| 112 // Loads the given plugin. | 113 // Loads the given plugin. |
| 113 IPC_MESSAGE_CONTROL1(PpapiMsg_LoadPlugin, FilePath /* path */) | 114 IPC_MESSAGE_CONTROL1(PpapiMsg_LoadPlugin, FilePath /* path */) |
| (...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1014 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1015 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
| 1015 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1016 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
| 1016 ppapi::HostResource /* video_decoder */, | 1017 ppapi::HostResource /* video_decoder */, |
| 1017 int32_t /* picture buffer id */) | 1018 int32_t /* picture buffer id */) |
| 1018 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1019 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
| 1019 ppapi::HostResource /* video_decoder */) | 1020 ppapi::HostResource /* video_decoder */) |
| 1020 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1021 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
| 1021 ppapi::HostResource /* video_decoder */) | 1022 ppapi::HostResource /* video_decoder */) |
| 1022 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1023 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
| 1023 ppapi::HostResource /* video_decoder */) | 1024 ppapi::HostResource /* video_decoder */) |
| OLD | NEW |