| 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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 PP_Bool /* result */) | 817 PP_Bool /* result */) |
| 818 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBInstance_ExecuteScript, | 818 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBInstance_ExecuteScript, |
| 819 PP_Instance /* instance */, | 819 PP_Instance /* instance */, |
| 820 ppapi::proxy::SerializedVar /* script */, | 820 ppapi::proxy::SerializedVar /* script */, |
| 821 ppapi::proxy::SerializedVar /* out_exception */, | 821 ppapi::proxy::SerializedVar /* out_exception */, |
| 822 ppapi::proxy::SerializedVar /* result */) | 822 ppapi::proxy::SerializedVar /* result */) |
| 823 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_SetFullscreen, | 823 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_SetFullscreen, |
| 824 PP_Instance /* instance */, | 824 PP_Instance /* instance */, |
| 825 PP_Bool /* fullscreen */, | 825 PP_Bool /* fullscreen */, |
| 826 PP_Bool /* result */) | 826 PP_Bool /* result */) |
| 827 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_SetFullscreen_Dev, |
| 828 PP_Instance /* instance */, |
| 829 PP_Bool /* fullscreen */, |
| 830 PP_Bool /* result */) |
| 827 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBInstance_GetScreenSize, | 831 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBInstance_GetScreenSize, |
| 828 PP_Instance /* instance */, | 832 PP_Instance /* instance */, |
| 829 PP_Bool /* result */, | 833 PP_Bool /* result */, |
| 830 PP_Size /* size */) | 834 PP_Size /* size */) |
| 835 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBInstance_GetScreenSize_Dev, |
| 836 PP_Instance /* instance */, |
| 837 PP_Bool /* result */, |
| 838 PP_Size /* size */) |
| 831 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_RequestInputEvents, | 839 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_RequestInputEvents, |
| 832 PP_Instance /* instance */, | 840 PP_Instance /* instance */, |
| 833 bool /* is_filtering */, | 841 bool /* is_filtering */, |
| 834 uint32_t /* event_classes */) | 842 uint32_t /* event_classes */) |
| 835 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_ClearInputEvents, | 843 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_ClearInputEvents, |
| 836 PP_Instance /* instance */, | 844 PP_Instance /* instance */, |
| 837 uint32_t /* event_classes */) | 845 uint32_t /* event_classes */) |
| 838 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_PostMessage, | 846 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_PostMessage, |
| 839 PP_Instance /* instance */, | 847 PP_Instance /* instance */, |
| 840 ppapi::proxy::SerializedVar /* message */) | 848 ppapi::proxy::SerializedVar /* message */) |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1033 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1041 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
| 1034 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1042 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
| 1035 ppapi::HostResource /* video_decoder */, | 1043 ppapi::HostResource /* video_decoder */, |
| 1036 int32_t /* picture buffer id */) | 1044 int32_t /* picture buffer id */) |
| 1037 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1045 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
| 1038 ppapi::HostResource /* video_decoder */) | 1046 ppapi::HostResource /* video_decoder */) |
| 1039 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1047 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
| 1040 ppapi::HostResource /* video_decoder */) | 1048 ppapi::HostResource /* video_decoder */) |
| 1041 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1049 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
| 1042 ppapi::HostResource /* video_decoder */) | 1050 ppapi::HostResource /* video_decoder */) |
| OLD | NEW |